This file contains 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> | |
<title>Site Maintenance</title> | |
<style> | |
body { text-align: center; padding: 150px; } | |
h1 { font-size: 50px; } | |
body { font: 20px Helvetica, sans-serif; color: #333; } | |
article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
a { color: #dc8100; text-decoration: none; } | |
a:hover { color: #333; text-decoration: none; } | |
</style> |
This file contains 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
This is from vscode, neat. | |
It auto-saves! |
This file contains 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 | |
# An interactive script that allows you to delete multiple remote branches from | |
# a git repository with confirmation before deletion. | |
# | |
# Provide the path to the git repo as an argument to the script or it will | |
# prompt you for the path to the repo | |
# | |
# @version 0.1 | |
# @author Evan Reeves <[email protected]> |
This file contains 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/sh | |
# | |
# /etc/rc.d/init.d/swap | |
# | |
# Daemon for swap | |
# | |
# chkconfig: - 05 99 | |
# description: Enable swap space | |
### BEGIN INIT INFO |
This file contains 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
[alias] | |
cleanfeature = branch --merged | grep "feature/" | xargs -n 1 git branch -d | |
[merge] | |
tool = p4mergetool | |
renameLimit = 8000 | |
[mergetool "p4mergetool"] | |
cmd = /Applications/p4merge.app/Contents/Resources/launchp4merge $PWD/$BASE $PWD/$REMOTE $PWD/$LOCAL $PWD/$MERGED | |
trustExitCode = false | |
[mergetool] | |
keepBackup = false |
This file contains 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
# Put this into .gitignore: | |
[alias] | |
cleanfeature = branch --merged | grep "feature/" | xargs -n 1 git branch -d | |
# Then, run git cleanfeature - it will delete every branch with name containing feature/ that has been fully merged into the current branch. |
This file contains 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
class DisableMigrations(object): | |
def __contains__(self, item): | |
return True | |
def __getitem__(self, item): | |
return "notmigrations" | |
This file contains 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
[ | |
{ | |
attachment_url: "", | |
created: "2015-10-14T08:46:05", | |
url: "https://scrumdo-attachments.s3.amazonaws.com:443/projects%2Fstory%2Fattachments_v2%2F169800_subtasks.png?Expires=1444828586&AWSAccessKeyId=AKIAJGOQ7F37VIQQCUYQ&Signature=F6CN3qbDUE%2F5ZrNAlI9dcgeki3Q%3D", | |
story_id: 169800, | |
id: 17506, | |
modified: "2015-10-14T08:46:05", | |
filename: "169800_subtasks.png", | |
attachment_name: "", |
This file contains 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
@NgController( | |
selector: '[kanban-cell]', | |
publishAs: 'cell' | |
) | |
class KanbanCell { | |
@NgTwoWay('card-id') | |
int cardId; | |
} |
NewerOlder