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
# | |
# GENERIC -- Generic kernel configuration file for FreeBSD/amd64 | |
# | |
# For more information on this file, please read the config(5) manual page, | |
# and/or the handbook section on Kernel Configuration Files: | |
# | |
# https://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html | |
# | |
# The handbook is also available locally in /usr/share/doc/handbook | |
# if you've installed the doc distribution, otherwise always see the |
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
# Xcode | |
## Build generated | |
build/ | |
DerivedData/ | |
## Various settings | |
ExportOptions.plist | |
*.pbxuser | |
!default.pbxuser |
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
#https://www.prowlapp.com/api.php#add | |
curl https://api.prowlapp.com/publicapi/add -F apikey=KEY -F priority=0 -F application=“DJRC Test” -F event=“cache cleared” -F description=“Dev ya termino!” |
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 dealWithKeys(evt) | |
curr_modifiers = evt:getFlags() | |
print(curr_modifiers["ctrl"]) | |
print("========================") | |
mod_table = { ["ctrl"] = true } | |
print(mod_table['ctrl']) | |
if (curr_modifiers.contain({ "ctrl" })) then | |
print "Only has Control" | |
else | |
print "Might have something else" |
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 sh | |
dotfile_dir="$HOME/Documents/Development/configuration/dotfiles" | |
git_repo="https://github.com/rderik/dotfiles.git" | |
if [ -d $dotfile_dir ]; then | |
echo "$dot_file already exists exists" | |
else | |
echo "Doesn't exists" | |
mkdir -p $dotfile_dir | |
git clone $git_repo $dotfile_dir | |
if [ $? -eq 0 ]; then |
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
#Enter command mode | |
<C-w> : | |
#Enter Terminal Normal mode , then press i to go back | |
<C-w> N | |
# Close window without stopping the job | |
<C-w> :hide | |
#view buffers | |
:ls |
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
#search for Directories and set the permissions to 755 | |
find . -type d -exec chmod 755 {} \; | |
#search for files and set the permissions to 644 | |
find . -type f -exec chmod 644 {} \; |