I hereby claim:
- I am fsabado on github.
- I am fsabado (https://keybase.io/fsabado) on keybase.
- I have a public key ASDV1DYEGaLtMGEV-8CnEEebuvPMngxcAwOZFVoE2d1I6Qo
To claim this, I am signing this object:
| // For format details, see https://aka.ms/devcontainer.json. For config options, see the | |
| // README at: https://github.com/devcontainers/templates/tree/main/src/java | |
| { | |
| "name": "My Universal", | |
| // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | |
| "image": "fs8080/universal-dev-container:v1", | |
| "features": { | |
| "ghcr.io/devcontainers/features/java:1": { | |
| "version": "21", | |
| "additionalVersions": "17,11,8", |
I hereby claim:
To claim this, I am signing this object:
| TODO | |
| implement security measures | |
| git config | |
| config files | |
| full sublimetext config | |
| set up openvpn | |
| rdesktop and network drive to terra | |
| set up evolution | |
| RStudio |
| ;=============================================== | |
| ; Created on Jan.10th, 2015 | |
| ; <------------------Summary------------------> | |
| ; Default Simulator : spectre | |
| ; Default Folder : ./simulation | |
| ; Spectre Options : APS+ 64bit Multi-thread psfbin | |
| ; HSPICE Options : HPP 64bit Multi-thread tr0 Waveview | |
| ; Anyline starts with a semi-comma (;) is comment and will be omited by Cadence | |
| ;=============================================== | |
| ; Do not show What's new popup window |
| #Get Current Directory Snippet | |
| #http://stackoverflow.com/questions/59895/can-a-bash-script-tell-which-directory-it-is-stored-in | |
| SOURCE="${BASH_SOURCE[0]}" | |
| while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink | |
| DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" | |
| SOURCE="$(readlink "$SOURCE")" | |
| [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located | |
| done | |
| DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" |
If you're like me you have a dir like ~/Workspace/Github where all your git repos live. I often find myself making a change in a repo, getting side tracked and ending up in another repo, or off doing something else all together. After a while I end up with several repos with modifications. This script helps me pick up where I left off by checking the status of all my repos, instead of having to check each one individually.
Usage:
git-status [directory]This will run git status on each repo under the directory specified. If called with no directory provided it will default to the current directory.
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |