SHA- be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2User@SHA ref- phts@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2User/Project@SHA- phts/my-project@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2#Num- #1User/#Num- phts#1User/Project#Num- phts/my-project#1
This file contains hidden or 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
| /***************** | |
| * cellBlockA.js * | |
| ***************** | |
| * | |
| * Good morning, Dr. Eval. | |
| * | |
| * It wasn't easy, but I've managed to get your computer down | |
| * to you. This system might be unfamiliar, but the underlying | |
| * code is still JavaScript. Just like we predicted. | |
| * |
%a- The abbreviated weekday name ("Sun")%A- The full weekday name ("Sunday")%b- The abbreviated month name ("Jan")%B- The full month name ("January")%c- The preferred local date and time representation%d- Day of the month (01..31)%H- Hour of the day, 24-hour clock (00..23)%I- Hour of the day, 12-hour clock (01..12)%j- Day of the year (001..366)%m- Month of the year (01..12)
> set
%SystemDrive%- C:%SystemRoot%- C:\WINDOWS%WinDir%- C:\WINDOWS%SystemDirectory%- C:\WINDOWS\System32%ComSpec%- The path including the command interpreter program (C:\WINDOWS\system32\cmd.exe)%programfiles%- C:\WINDOWS\Program Files
HEAD^ - First parent commit
HEAD~x - xth parent commit
git reset HEAD -- file - Unstage file
git checkout -- file - Revert local changes (checkout file from the current branch)
git checkout branch -- file - Get a file from other branch
This file contains hidden or 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
| #!/bin/bash | |
| # From http://ubuntuforums.org/showthread.php?t=636724 | |
| DEBFILE="$1" | |
| TMPDIR=`mktemp -d /tmp/deb.XXXXXXXXXX` || exit 1 | |
| OUTPUT=`basename "$DEBFILE" .deb`.modfied.deb | |
| if [[ -e "$OUTPUT" ]]; then | |
| echo "$OUTPUT exists." | |
| rm -r "$TMPDIR" |
This file contains hidden or 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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem] | |
| "NtfsDisable8dot3NameCreation"=dword:00000002 |
This file contains hidden or 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
| c: | |
| cd / | |
| fsutil file setshortname "C:\Program Files" PROGRA~1 | |
| fsutil file setshortname "C:\Program Files (x86)" PROGRA~2 | |
| fsutil file setshortname "C:\Program Files\Common Files" COMMON~1 | |
| fsutil file setshortname "C:\Program Files (x86)\Common Files" COMMON~1 | |
| pause |
This file contains hidden or 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
| diskpart | |
| list disk | |
| select disk <X> | |
| clean | |
| create part pri | |
| select part 1 | |
| format fs=ntfs quick | |
| active | |
| exit |
NewerOlder