- SimHub must be already installed!
- Link to download HUD files archive: Formula 1 HUD.rar (extract password:
bolo
)
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
(function (global, factory) { | |
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : | |
typeof define === 'function' && define.amd ? define(factory) : | |
(global.YourNameSpace = factory()); | |
}(this, function () { | |
'use strict'; | |
function method() {} | |
var YourNameSpace = { | |
method: method |
Macbook Pro Retina 15-inch, Late 2013
Model Identifier: MacBookPro11,2
The MacBook Pro 11,x consists of models with Retina display shipped by Apple In Late 2013 and Mid 2014.
Following ArchWiki guide.
Grab a cup of coffe and get ready, because life is not always easy 🙈
TAR = Tape Archive but it is essentially the native linux format of creating an archive. Gzip = Compressed. Together a Gzipped Tar is the linux equivalent of a Zip.
To create a gzipped TAR archive of all files in the current directory do this:
tar -czvf archive.tgz *
to tar-gz the xfiles folder into xarchive.tgz do:
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
This gist tracks my zsh configurations | |
Profiles for both OSX & Linux |
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
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
if [[ $# -ne 1 ]]; then | |
echo 'This script must receive a tar ball as single argument' | |
exit 1 | |
fi | |
EXTRACTEDFOLDER="$(dirname $1)/gitkraken" |
I hereby claim:
- I am octaviobr on github.
- I am octavio (https://keybase.io/octavio) on keybase.
- I have a public key ASBfBzYywJpiUgHM3g39Ex3WnlsD5gZEGHv2R1k4bVyt-go
To claim this, I am signing this object:
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
[core] | |
excludesfile = /Users/octavio/.gitignore_global | |
pager = diff-so-fancy | less --tabs=4 -RFX | |
editor = /usr/bin/vim | |
[alias] | |
st = status -sb | |
branches = branch -a | |
remotes = remote -v | |
co = checkout | |
lg = log --color --graph |
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
bind "F3" "+show_runetop" // Hold to see top rune. | |
bind "F4" "+show_runebottom" // Hold to see bot rune. | |
bind "F5" "+showboard" | |
bind "F10" "showgraph" //Toggle Net_Graph | |
//chat_join "[your channel]" // Join chat channel | |
// ~~~~~~~~~~~~ SETTINGS ~~~~~~~~~~~~ | |
cl_forcepreload "1" | |
sv_forcepreload "1" |
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
regExp = /collectionPrefix_*/; | |
db.getCollectionNames().filter(function(name){ | |
return name.match(regExp) | |
}).forEach(function(name){ | |
db.getCollection(name).drop() | |
}); |