Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| admin account info" filetype:log | |
| !Host=*.* intext:enc_UserPassword=* ext:pcf | |
| "# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd | |
| "AutoCreate=TRUE password=*" | |
| "http://*:*@www” domainname | |
| "index of/" "ws_ftp.ini" "parent directory" | |
| "liveice configuration file" ext:cfg -site:sourceforge.net | |
| "parent directory" +proftpdpasswd | |
| Duclassified" -site:duware.com "DUware All Rights reserved" | |
| duclassmate" -site:duware.com |
| #!/bin/bash | |
| set -eux | |
| BACKUP_ACCOUNT=backupuser@backup.example.com | |
| MAXSIZE=45000000000 | |
| # Wait for the net to come up | |
| while [ ! $(ifconfig | grep 'status: active') ]; do |
| #!/bin/sh | |
| LOCAL_HOST="localhost" | |
| LOCAL_PORT="" | |
| GATEWAY_USER="" | |
| GATEWAY_HOST="" | |
| GATEWAY_PORT=22 | |
| TARGET_HOST="" |
| #!/bin/bash | |
| # | |
| # Lee Robert's Base Ubuntu Installation script for use on Digital Ocean (Or any other ubuntu install really.) | |
| # Made and tested with Ubuntu 13.04 64bit | |
| # | |
| # Steps: | |
| # 01. Secure Root User | |
| # 02. Make .bashrc print out pretty colors (and root's prompt will be red) | |
| # 03. Create a local user | |
| # 04. Update sudoers file so only root + local user can use sudo |
If you use git on the command-line, you'll eventually find yourself wanting aliases for your most commonly-used commands. It's incredibly useful to be able to explore your repos with only a few keystrokes that eventually get hardcoded into muscle memory.
Some people don't add aliases because they don't want to have to adjust to not having them on a remote server. Personally, I find that having aliases doesn't mean I that forget the underlying commands, and aliases provide such a massive improvement to my workflow that it would be crazy not to have them.
The simplest way to add an alias for a specific git command is to use a standard bash alias.
# .bashrcLeaving this for historical reasons, but with the latest iteration I set up proper dotfiles. Check em out
After too many years of tinkering my machine is a bit all over. With Mojave High Sierra Montery I wanted to start fresh
Make sure everything is up to date.
| 135207 columns/static/img/ggj/c1.png | |
| 122010 columns/static/img/ggj/c2.png | |
| 144015 columns/static/img/ggj/c3.png | |
| 121790 sites/management/commands/invitation_code.txt | |
| 121795 sites/management/commands/invitation_code.txt | |
| 121800 sites/management/commands/invitation_code.txt | |
| 121805 sites/management/commands/invitation_code.txt | |
| 210125 sites/static/img/1.jpg | |
| 131079 sites/static/img/2.jpg | |
| 109902 sites/static/img/2011-ggj/daminghu.png |
| #!/bin/bash | |
| # Original script by Noel B. Alonso: https://gist.github.com/nbalonso/5696340 | |
| #variables | |
| DSCL="/usr/bin/dscl" | |
| SECURITY="/usr/bin/security" | |
| LOGGER="/usr/bin/logger" | |
| # Determine OS version |