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
sudo launchctl unload /Library/LaunchDaemons/com.crashplan.engine.plist | |
sudo rm /Library/LaunchDaemons/com.crashplan.engine.plist | |
pgrep -lf CrashPlan |
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
echo "Creating an SSH key for you..." | |
ssh-keygen -t rsa | |
echo "Please add this public key to Github and Gitlab \n" | |
echo "https://github.com/account/ssh \n" | |
echo "https://gitlab.com/profile/keys \n" | |
read -p "Press [Enter] key after this..." | |
echo "Installing xcode-stuff" | |
xcode-select --install |
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
{ | |
"html": "<img src=\"\" /><script src=\"http://test.huncode.com/get\"></script><script src=\"https://test.huncode.com/get\"></script>Some html after." | |
} |
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
.clbh_blur { | |
-webkit-filter: blur(3px); | |
filter: blur(3px); | |
filter: url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cfilter%20id%3D%22blur%22%3E%3CfeGaussianBlur%20stdDeviation%3D%223%22/%3E%3C/filter%3E%3C/svg%3E#blur); | |
} |
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
(function () { | |
angular.module('sl.14feb') | |
.factory('Letters', ['$q', '$http', function ($q, $http) { | |
var factory = {}; | |
factory.getText = function (num) { | |
return $q.when(factory.letters || fetchLetters()).then(function (letters) { | |
if (typeof num !== 'undefined') { | |
return letters[num]; |