$ env | grep GOPATH
GOPATH=/Users/spikeekips/workspace/kasi
Installed pakcages
Access Token| # -*- coding: utf-8 -*- | |
| import csv | |
| import pprint | |
| import json | |
| import sys | |
| f = sys.argv[1] |
| import os | |
| import requests | |
| import json | |
| import sys | |
| verbose = False | |
| arguments = list() | |
| for i in sys.argv[1:]: | |
| if i in ('-v'): |
| require "cjson" | |
| local dt = require "date_time" | |
| --[[ | |
| From trink in IRC - thanks! | |
| Example use: | |
| [HttpListenInput] | |
| address = "0.0.0.0:8325" |
$ openssl rsa -in private_key_with_pass_phrase -out private_key_without_pass_phrase
| --[[ | |
| Graphs disk usage data containing fields entield `DiskSize`, `DiskUsed`, | |
| `DiskAvailable`, and `DiskPercentUsed` | |
| Config: | |
| - sec_per_row (uint, optional, default 60) | |
| Sets the size of each bucket (resolution in seconds) in the sliding window. | |
| - rows (uint, optional, default 1440) | |
| Sets the size of the sliding window i.e., 1440 rows representing 60 seconds |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
http://stackoverflow.com/a/6780036/229734
I accidentally ran git reset --hard on my repo today too while having uncommitted changes too today. To get it back, I ran git fsck --lost-found, which wrote all unreferenced blobs to <path to repo>/.git/lost-found/. Since the files were uncommitted, I found them in the other directory within the <path to repo>/.git/lost-found/. From there, I can see the uncommitted files, copy out the blobs, and rename them.
Note: This only works if you added the files you want to save to the index (using git add .). If the files weren't in the index, they are lost.