dripcode.blogspot.com
dripcode: Turn on GIT Autocompletion in Mac OSX
http://dripcode.blogspot.com/2015/08/turn-on-git-autocompletion.html
Nerd speak for the software designer. Sunday, August 2, 2015. Turn on GIT Autocompletion in Mac OSX. If [ -f /.git-completion.bash ]; then. Source /.git-completion.bash. Open up terminal and navigate to your root/home directory: cd. Download git-completion.bash from github.com via the terminal by typing the following: curl -Lo .git-completion.bash https:/ github.com/git/git/raw/master/contrib/completion/git-completion.bash. If [ -f /.git-completion.bash ]; then. Source /.git-completion.bash.
dripcode.blogspot.com
dripcode: View Hidden Files via CMD (dos command)
http://dripcode.blogspot.com/2015/06/view-hidden-files-via-cmd-dos-command.html
Nerd speak for the software designer. Friday, June 19, 2015. View Hidden Files via CMD (dos command). Subscribe to: Post Comments (Atom). Tip of the week. Home - Adobe Flex. Adobe Labs - Flex. Adobe Labs - AIR. ActionScript 3.0 overview. Scott Guthrie's Blog - LINQ to SQL. One Laptop Per Child. Adding Google Analytics on Blogger. Using SyntaxHighlighter on Blogger. GridClock Final (testadmin@test.com, test). GridClock 2 (database, u:testUser p:testPassword). Integrated Development Environments (IDEs).
dripcode.blogspot.com
dripcode: View Hidden Files via Bash (Unix terminal)
http://dripcode.blogspot.com/2015/08/view-hidden-files-via-bash-unix-terminal.html
Nerd speak for the software designer. Sunday, August 2, 2015. View Hidden Files via Bash (Unix terminal). Subscribe to: Post Comments (Atom). Tip of the week. Home - Adobe Flex. Adobe Labs - Flex. Adobe Labs - AIR. ActionScript 3.0 overview. Scott Guthrie's Blog - LINQ to SQL. One Laptop Per Child. Adding Google Analytics on Blogger. Using SyntaxHighlighter on Blogger. GridClock Final (testadmin@test.com, test). GridClock 2 (database, u:testUser p:testPassword). Integrated Development Environments (IDEs).
dripcode.blogspot.com
dripcode: man curl
http://dripcode.blogspot.com/2015/08/man-curl.html
Nerd speak for the software designer. Sunday, August 2, 2015. It's a not a new exercise for tough guys. It's a command for Unix users, "man curl". The command is "curl" and "man" shows you the manual or "man page" for that command. The " curl. Command is used to pull down remote files to a local directory via the command line. It's an important command to know if you are a Mac OS and Unix user. For Windows/Powershell users there is the Invoke-RestMethod. Subscribe to: Post Comments (Atom). Tip of the week.
dripcode.blogspot.com
dripcode: Create Alias Command in Bash
http://dripcode.blogspot.com/2015/08/create-alias-command-in-bash.html
Nerd speak for the software designer. Sunday, August 2, 2015. Create Alias Command in Bash. Put the following in you .bashrc or .bash profile in you root/home directory: alias ll='ls -lahG'. Subscribe to: Post Comments (Atom). Tip of the week. Home - Adobe Flex. Adobe Labs - Flex. Adobe Labs - AIR. ActionScript 3.0 overview. Scott Guthrie's Blog - LINQ to SQL. One Laptop Per Child. Adding Google Analytics on Blogger. Using SyntaxHighlighter on Blogger. GridClock Final (testadmin@test.com, test).
dripcode.blogspot.com
dripcode: How to check if a file exists in Bash
http://dripcode.blogspot.com/2015/08/how-to-check-if-file-exists-in-bash.html
Nerd speak for the software designer. Sunday, August 2, 2015. How to check if a file exists in Bash. In Unix, Mac, or Windows ( Cygwin. You can check if a file exists when you load up the terminal window. The script is as follows:. If [ -f /somefilename ]; then. In this example the script checks to see if a file named "somefilename" exists in my home/root directory. If it "somefilename" exists then it sources/executes the content of that file as a script. When is this useful? Bash Scripting: How to.
dripcode.blogspot.com
dripcode: Set Command Line Path
http://dripcode.blogspot.com/2015/08/set-command-line-path.html
Nerd speak for the software designer. Sunday, August 2, 2015. Set Command Line Path. Put the following in you .bashrc or .bash profile in you root/home directory: export PATH="/USERS/joesmith/bin:$PATH". Subscribe to: Post Comments (Atom). Tip of the week. Home - Adobe Flex. Adobe Labs - Flex. Adobe Labs - AIR. ActionScript 3.0 overview. Scott Guthrie's Blog - LINQ to SQL. One Laptop Per Child. Adding Google Analytics on Blogger. Using SyntaxHighlighter on Blogger.
dripcode.blogspot.com
dripcode: Change the Terminal Command Prompt
http://dripcode.blogspot.com/2015/08/change-terminal-command-prompt.html
Nerd speak for the software designer. Sunday, August 2, 2015. Change the Terminal Command Prompt. Export PS1=" w/ u$ ". Put the following in you .bashrc or .bash profile in you root/home directory: export PS1= " w/ u$ ". Subscribe to: Post Comments (Atom). Tip of the week. Home - Adobe Flex. Adobe Labs - Flex. Adobe Labs - AIR. ActionScript 3.0 overview. Scott Guthrie's Blog - LINQ to SQL. One Laptop Per Child. Adding Google Analytics on Blogger. Using SyntaxHighlighter on Blogger.
dripcode.blogspot.com
dripcode: Google: No Country Redirect
http://dripcode.blogspot.com/2015/08/google-no-country-redirect.html
Nerd speak for the software designer. Sunday, August 2, 2015. Google: No Country Redirect. Have you every been to China and tried to search for something on Google.com. Why do you get different results? I live in Australia and have wondered the same thing. To avoid getting redirected by Google just type in "ncr", it stands for "no country redirect" after the URL (e.g. http:/ www.google.com/ncr. If I was in the States and wante. D to view what people in Australia see when they do a search I.
dripcode.blogspot.com
dripcode: Creating an Empty File in Unix/Mac OS X (Touch)
http://dripcode.blogspot.com/2015/08/creating-empty-file-in-unixmac-os-x.html
Nerd speak for the software designer. Sunday, August 2, 2015. Creating an Empty File in Unix/Mac OS X (Touch). Subscribe to: Post Comments (Atom). Tip of the week. Home - Adobe Flex. Adobe Labs - Flex. Adobe Labs - AIR. ActionScript 3.0 overview. Scott Guthrie's Blog - LINQ to SQL. One Laptop Per Child. Adding Google Analytics on Blogger. Using SyntaxHighlighter on Blogger. GridClock Final (testadmin@test.com, test). GridClock 2 (database, u:testUser p:testPassword).