=====================================================================================
0|You hit the Orc scout! The Orc scout misses you. You hit the Orc scout! -more- |
1|CharName | |
2| | |
3|Str 3| |
4|Dex 3| |
5|Con 7| |
6|Gra 3| |
7| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {;; Paths to add to classpath. | |
| :paths ["src" "resources"] | |
| ;; Library dependencies to add to classpath. | |
| :deps {org.clojure/clojure {:mvn/version "1.12.0"} | |
| cheshire/cheshire {:mvn/version "6.0.0"} | |
| clj-http/clj-http {:mvn/version "3.13.0"}} | |
| :aliases | |
| {:run-m {:main-opts ["-m" "com.miguno.migunoclj"]} | |
| :run-x {:ns-default com.miguno.migunoclj | |
| :exec-fn greet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| # To cancel a currently running workflow from the same PR, branch, or tag | |
| # when a new workflow is triggered. |
To create an alias for just named j in Powershell that sets just's default shell to PowerShell itself, create a PowerShell profile with the following contents.
###
### PowerShell profile
###
### Installation
### ============
### Store this file at `$HOME\Documents\PowerShell\Profile.ps1`,- Click this link to download the file (Ctrl+S)
- Name this file
csgo_textmod.txtand put it inside this folder:Steam\SteamApps\Common\Counter-Strike Global Offensive\game\csgo\resource- Notice the
game\csgo(CS2) folder, and not justcsgo(CS:GO).
- Notice the
- Add
-language textmodto your launch options
csgo_textmod.txtis placed in the right folder (it needs to be inside the CS2game\csgo\resourcefolder)- Launch option is spelled correctly, this is an example that will work:
-novid -language textmod
Convert Rust books to EPUB (incl. The Rust Programming Language)
The following steps work for all the HTML learning materials on the Learn Rust page:
- Click on the "Print this book" icon in the top right corner.
- "Cancel" print popup.
- Press F12 (on Firefox) to open the browser console. Or: Tools > Browser Tools > Web Developer Tools, then switch to Console tab.
- Copy, paste, and run the contents of
ebookFormatPreparation.jsinto your browser's console. - Save the modified HTML file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func isInputFromStdin() bool { | |
| info, err := os.Stdin.Stat() | |
| if err != nil { | |
| log.Fatal(err) | |
| } | |
| if info.Mode()&os.ModeNamedPipe == 0 { | |
| return false | |
| } else { | |
| return true | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| physics/shield/bullet_hit_shield_07.wav | |
| physics/shield/bullet_hit_shield_06.wav | |
| physics/shield/bullet_hit_shield_05.wav | |
| physics/shield/bullet_hit_shield_04.wav | |
| physics/shield/bullet_hit_shield_03.wav | |
| physics/shield/bullet_hit_shield_02.wav | |
| physics/shield/bullet_hit_shield_01.wav | |
| player/winter/snowball_throw_04.wav | |
| player/winter/snowball_throw_03.wav | |
| player/winter/snowball_throw_02.wav |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE STREAM products ...; | |
| CREATE STREAM products_repartitioned | |
| WITH (PARTITIONS=42) AS | |
| SELECT * FROM products | |
| PARTITION BY product_id | |
| EMIT CHANGES; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE STREAM products ...; | |
| CREATE STREAM products_repartitioned | |
| WITH (PARTITIONS=30) AS | |
| SELECT * FROM products | |
| EMIT CHANGES; |
NewerOlder