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
| ** STEPS TO FIX THE KEYBIND BUG IN SKYRIM ** | |
| 1. Subscribe to the Steam Workshop page of Skyrim Key Helper. (https://steamcommunity.com/sharedfiles/filedetails/?id=8639) | |
| 2. Open up skyrim for the mod files to download | |
| 3. Set the controls to the following | |
| ESDF for movement | |
| r for equip | |
| t for ready | |
| y for wait |
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
| SET @started=NOW(); | |
| # Put Query Here!! | |
| SET @completed=NOW(); | |
| SET @timetaken=TIMEDIFF(@completed,@started); | |
| # save it to a table using the query below | |
| # doesn't work, its just a sample query | |
| INSERT INTO timelogs ( | |
| `timestamp`, |
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
| REGEDIT4 | |
| [HKEY_CLASSES_ROOT\*\shell] | |
| [HKEY_CLASSES_ROOT\*\shell\openwemacs] | |
| @="&Edit with Emacs" | |
| # The above value appears in the global context menu, | |
| # i.e., when you right click on a file. | |
| # (The '&' makes the next character a shortcut.) | |
| "Icon"="C:\\emacs\\bin\\emacs.exe,0" | |
| # The above uses the icon of the Emacs exe for the context |
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
| To see what's running on port 3000 | |
| lsof -i tcp:3000 |
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
| (require 'package) | |
| (add-to-list | |
| 'package-archives | |
| ;; '("melpa" . "http://stable.melpa.org/packages/") ; many packages won't show if using stable | |
| '("melpa" . "http://melpa.milkbox.net/packages/") | |
| t) | |
| (package-initialize) | |
| ;; recent files | |
| (require 'recentf) |
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
| https://stackoverflow.com/questions/17404165/how-to-run-a-command-on-command-prompt-startup-in-windows | |
| Open cmd and run the command below | |
| reg add "HKCU\Software\Microsoft\Command Processor" /v AutoRun ^ | |
| /t REG_EXPAND_SZ /d "%"USERPROFILE"%\init.cmd" /f |
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
| REGEDIT4 | |
| [HKEY_CLASSES_ROOT\*\shell] | |
| [HKEY_CLASSES_ROOT\*\shell\openwemacs] | |
| @="&GNU Emacs" | |
| # The above value appears in the global context menu, | |
| # i.e., when you right click on a file. | |
| # (The '&' makes the next character a shortcut.) | |
| "Icon"="C:\\Program Files\\Emacs\\bin\\emacs.exe,0" | |
| # The above uses the icon of the Emacs exe for the context |
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
| contract mortal { | |
| /* Define variable owner of the type address */ | |
| address owner; | |
| /* This function is executed at initialization and sets the owner of the contract */ | |
| function mortal() { owner = msg.sender; } | |
| /* Function to recover the funds on the contract */ | |
| function kill() { if (msg.sender == owner) selfdestruct(owner); } | |
| } |
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
| { | |
| "config": { | |
| "chainId": 15, | |
| "homesteadBlock": 0, | |
| "eip155Block": 0, | |
| "eip158Block": 0 | |
| }, | |
| "nonce": "0x0000000000000042", | |
| "timestamp": "0x0", | |
| "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000", |
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
| // NETWORK SETTINGS | |
| rate 312500 | |
| cl_updaterate 128 | |
| cl_cmdrate 128 | |
| cl_interp 0 | |
| cl_interp_ratio 2 | |
| cl_predict 1 | |
| cl_predictweapons 1 | |
| cl_lagcompensation 1 |