This file contains 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
// i just wanna see all my games in plain text format | |
document.querySelectorAll('[class^="gameslistitems_GameName_"]').forEach(e => { console.log(e.text); }); | |
// or maybe | |
var games = ''; | |
document.querySelectorAll('[class^="gameslistitems_GameName_"]').forEach(g => { | |
games = games === '' ? games = g.text : games += ', ' + g.text; | |
}); | |
console.log(games); |
This file contains 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
#!/usr/bin/env bash | |
# Usage: ./generate_psx_m3u.sh | |
# small tweak on: https://github.com/danyboy666/Generate-PSX-m3u-playlist/blob/master/generate_psx_m3u.sh | |
for rom in *{.rar,.chd,.zip,.pbp,.PBP,.7z,.cue}; do | |
if [[ $rom =~ ^.*[dD]is[ckCK].*$ ]]; then | |
playlistName=$(echo "$rom" | sed 's/.rar//g;s/.chd//g;s/.zip//g;s/.pbp//g;s/.PBP//g;s/.7z//g;s/.cue//g;s/\s[\(][dD]is[ckCK]\s[0-9]\{1,2\})//g') | |
echo -e "rom: $rom" | |
echo -e "playlist: $playlistName" | |
echo "$rom" >> "$playlistName"".m3u" |
This file contains 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
import { ParsedUrlQuery } from 'querystring'; | |
import { isArray } from 'lodash'; | |
// allows params with no val | |
const buildQueryStringFromParams = (params: ParsedUrlQuery = {}): string => | |
Object.keys(params) | |
.map((p, i) => { | |
const separator = i ? '&' : '?'; | |
const value = params[p] || ''; |
This file contains 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
git clone https://github.com/FreeTDS/freetds.git | |
cd freetds | |
git checkout branch-1_2 | |
./autogen.sh | |
./configure --enable-msdblib | |
make | |
make install | |
tsql -C |
This file contains 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
375 xrandr --setprovideroutputsource 0 1 | |
376 xrandr --setprovideroutputsource 1 0 | |
377 xrandr --setprovideroutputsource 1 2 | |
378 xrandr --setprovideroutputsource 1 3 | |
379 xrandr --setprovideroutputsource 1 4 | |
380 xrandr --setprovideroutputsource 0 1 | |
381 xrandr --setprovideroutputsource 0 2 | |
382 xrandr --setprovideroutputsource 0 3 | |
383* xrandr --setprovideroutputsource | |
384 xrandr --listproviders |
This file contains 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
<? | |
/** | |
* Given raw image data, return the file extension and MIME type of the file. | |
* The file extension includes the period character ('.'). | |
* | |
* If the picture contents are invalid or corrupted, the values will be null. | |
* | |
* @param $picture | |
* @return array |
This file contains 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
force_color_prompt=yes | |
# append to the history file, don't overwrite it | |
shopt -s histappend | |
shopt -s globstar # allow dir pattern matching | |
shopt -s checkwinsize | |
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) | |
HISTSIZE=10000 | |
HISTFILESIZE=20000 |
This file contains 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
nice -n 19 ionice -c3 $yourStuff |
This file contains 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
jQuery('.columbia-table.object-table-versioned > table > tbody > tr').each(function () { | |
if ( | |
jQuery(this).find('td a.list-view-item-name') && | |
// jQuery(this).find('td a.list-view-item-name').text().indexOf("Apr 4, 2018 2:04:00 PM") >= 0 && | |
jQuery(this).find('td a.list-view-item-name').text().indexOf("(Delete marker)") >= 0 | |
) { | |
jQuery(this).find('td input').click(); | |
} | |
}); |
This file contains 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
; i3/bswp+sxhkd/awesome-esque terminal opening: | |
;#Enter::Run, "C:\Program Files\PuTTY\putty.exe" -load "lamp" | |
#enter:: | |
Run "C:\Program Files (x86)\Mobatek\MobaXterm\MobaXterm.exe" | |
Return | |
; lcaps -> lctrl | |
$CapsLock::Ctrl | |
; set window to sit in front of all others |
NewerOlder