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
| #include <iostream> | |
| #include <cstdio> | |
| #include <cmath> | |
| #include "string.h" | |
| #include "mem.h" | |
| //Wav Header | |
| struct wav_header_t | |
| { | |
| char chunkID[4]; //"RIFF" = 0x46464952 |
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
| //ahk file type | |
| ; Configuration | |
| #NoEnv ;AHK updateleri icin uyumlu. | |
| #SingleInstance force ;sadece 1i calisir. | |
| SetTitleMatchMode, 2 ; | |
| #ifwinactive, TslGame ;PUBG acikken aktif. | |
| ; Variables |
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
| # !/bin/bash | |
| # Create and open a new Journal entry. | |
| atom ~/Google\ Drive/Journal/$(date "+%Y.%m.%d-%H.%M.%S").md |
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
| # install Homebrew if you don't already have it: http://mxcl.github.io/homebrew/ | |
| # install nano from homebrew | |
| brew install nano | |
| # update your nanorc file with the contents of the nanorc file below | |
| nano ~/.nanorc | |
| # re-open your terminal and you'll have syntax highlighting |