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
uname -a && cat /etc/*release |
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
@-moz-document domain("brigade.seventablets.com") { | |
div.chat { | |
background: url('http://orig07.deviantart.net/2d25/f/2017/138/a/c/l_lawliet__death_note__minimal_wallpaper_by_max028-db9mh7l.png'); | |
background-size: cover; | |
} | |
.chat .message.them .content .text:before, .chat .message.me .content .text:before { | |
border: none; | |
} |
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
@-moz-document url-prefix("https://bitbucket.org/"), url-prefix("https://bitbucket-pipelines.atlassian.io/") { | |
/*** Main Page ***/ | |
/* 'Teams', 'Projects', 'Repositories', 'Snippets' Dropdown list */ | |
.aui-dropdown2.aui-style-default:hover a { /* same as not hover */ | |
background-color: #205081; | |
color: #FAFAFA; | |
} | |
/*** Overview ***/ |
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
Show hidden characters
{ | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", | |
"selector": "*.html" | |
} | |
], | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/Color Highlighter/themes/Monokai.tmTheme", |
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
Color Highlighter | |
GitGutter | |
HTML-CSS-JS Prettify | |
JavaScriptNext - ES6 Syntax | |
Package Control | |
PackageResourceViewer | |
Pretty JSON | |
Syntax Highlighting for Sass |
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
/*------------------------------------------ | |
Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
1280-1024 - desktop (default grid) | |
1024-768 - tablet landscape | |
768-480 - tablet | |
480-less - phone landscape & smaller | |
--------------------------------------------*/ | |
@media all and (min-width: 1024px) and (max-width: 1280px) { } | |
@media all and (min-width: 768px) and (max-width: 1024px) { } |
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 reloadCSS() { | |
const links = document.getElementsByTagName('link'); | |
Array.from(links) | |
.filter(link => link.rel.toLowerCase() === 'stylesheet' && link.href) | |
.forEach(link => { | |
const url = new URL(link.href, location.href); | |
url.searchParams.set('forceReload', Date.now()); | |
link.href = url.href; | |
}); |
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 yum install java-1.8.0-openjdk #install java openjdk | |
# Follow http://yum.neo4j.org/stable/?_ga=2.103097408.1564015346.1501514682-208718025.1490024803 | |
# http://neo4j.com/docs/operations-manual/current/installation/linux/rpm/ | |
sudo yum install neo4j | |
#http://neo4j.com/docs/operations-manual/current/installation/linux/systemd/ | |
sudo systemctl enable neo4j | |
sudo systemctl start neo4j | |
sudo systemctl {start, restart, stop, status} neo4j |
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
cordova platform update [email protected] | |
#https://cordova.apache.org/announcements/2017/04/05/android-release.html | |
## For Android SDK tools 26.0.2 | |
## if ionic throws 'Could not find gradle wrapper within Android SDK. Might need to update your Android SDK' error | |
cordova platform update [email protected] | |
# new | |
cordova platform update [email protected] |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |