- http://stackoverflow.com/questions/804115 (
rebasevsmerge). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebasevsmerge) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse) - http://stackoverflow.com/questions/292357 (
pullvsfetch) - http://stackoverflow.com/questions/39651 (
stashvsbranch) - http://stackoverflow.com/questions/8358035 (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/5798930 (
git resetvsgit rm --cached)
Saturday (May 21st)
Leave for Croatia
Sunday
Arrive in Split (noon)
Monday
Saturday (May 21st)
Leave for Croatia
Sunday
Arrive in Split SPU (noon)
Split (recover)
Saturday (May 21st)
Leave for Croatia
Sunday
Arrive in Split SPU (noon)
Get to Dubrovnik (how? 4.5hr bus)
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.js"></script> | |
| <script type="text/javascript" data-app-id="INSERT-CLIENT-ID [yammer.com/client_applications]" src="https://assets.yammer.com/assets/platform_js_sdk.js"></script> | |
| </head> | |
| <body> | |
| <script> | |
| function displayAuthResult(authResult) { |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
| <script type="text/javascript" data-app-id="MzowvhzkPdHy6LGqXaDBAg" src="https://c64.assets-yammer.com/assets/platform_js_sdk.js"></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function () { |
I hereby claim:
- I am brianly on github.
- I am brianly (https://keybase.io/brianly) on keybase.
- I have a public key ASBEi9H7XbsoQ5HiyoHLW9eLyqlzNpyXbULIZMYDfdFyJQo
To claim this, I am signing this object:
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
| local usbWatcher = nil | |
| -- This is our usbWatcher function | |
| -- lock when yubikey is removed | |
| function usbDeviceCallback(data) | |
| -- this line will let you know the name of each usb device you connect, useful for the string match below | |
| hs.notify.show("USB", "You just connected", data["productName"]) | |
| -- Replace "Yubikey" with the name of the usb device you want to use. | |
| if string.match(data["productName"], "Yubikey") then | |
| if (data["eventType"] == "added") then |
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
| Install-WindowsFeature Web-Server | |
| Install-WindowsFeature Web-Default-Doc | |
| Install-WindowsFeature Web-Dir-Browsing | |
| Install-WindowsFeature Web-Http-Errors | |
| Install-WindowsFeature Web-Static-Content | |
| Install-WindowsFeature Web-Http-Redirect | |
| Install-WindowsFeature Web-Http-Logging | |
| Install-WindowsFeature Web-Custom-Logging | |
| Install-WindowsFeature Web-Log-Libraries | |
| Install-WindowsFeature Web-Request-Monitor |