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
#!/usr/bin/env python2.7 | |
# -*- coding: utf-8 -*- | |
import sys | |
from gi.repository import Gtk, Gdk, GdkPixbuf | |
from gi.repository import Granite | |
def show_about(sender = None): | |
about = Granite.WidgetsAboutDialog.new() |
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
" https://github.com/romainl/ctags-patterns-for-javascript | |
set number | |
set nowrap | |
set showbreak=+++ | |
set textwidth=100 | |
set showmatch | |
set visualbell | |
set hlsearch | |
set smartcase |
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
rabbitmqadmin list users | |
+------------+------------------------------+---------------+ | |
| name | password_hash | tags | | |
+------------+------------------------------+---------------+ | |
| guest | ***************************= | administrator | | |
+------------+------------------------------+---------------+ | |
vim ~/.rabbitmqadmin.conf |
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
'.platform-win32, .platform-linux': | |
'alt-f1': 'tree-view:reveal-active-file' | |
'.platform-linux, .platform-linux .command-palette atom-text-editor': | |
'ctrl-shift-a': 'command-palette:toggle' | |
'.platform-linux': | |
'ctrl-shift-n': 'fuzzy-finder:toggle-file-finder' | |
'.platform-linux atom-text-editor': |
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
# Ubuntu | |
find / -type d -name .WebIde100 2> /dev/null | |
# Mac OS X | |
rm -rf "$HOME/Library/Preferences/WebIde100" | |
rm -rf "$HOME/Library/Caches/WebIde100" | |
rm -rf "$HOME/Library/Application Support/WebIde100" | |
rm -rf "$HOME/Library/Logs/WebIde100" |
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
{ | |
"name": "ProjectName", | |
"description": "Site packages list", | |
"require": { | |
"codeigniter": "3.1.3", | |
"mdl": "1.1.3", | |
"react": "15", | |
"react-dom": "15", | |
"jquery": "1.12.0", | |
"underscorejs": "1.8.3", |
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 (window) { | |
var app = { | |
defaults: { | |
layout: '#layout' | |
}, | |
init: function (opts) { | |
new TabsView(); | |
new SearchView(); |
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
:root { | |
--background-color: #ccc; | |
} | |
html, body { | |
heigth: 100%; | |
weight: 100%; | |
padding: 0; | |
margin: 0; | |
background: var(--background-color); |