This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
| from gi.repository import Gtk | |
| settings = Gtk.Settings.get_default() | |
| settings.set_property("gtk-application-prefer-dark-theme", True) |
| use strict; | |
| use warnings; | |
| use vars qw($VERSION %IRSSI); | |
| use Irssi; | |
| # Script info | |
| $VERSION = '0.1'; | |
| %IRSSI = ( | |
| authors => 'Bas Stottelaar', |
| Signal | Value | Action | Comment |
|---|---|---|---|
| SIGHUP | 1 | Term | Hangup detected on controlling terminal or death of controlling process |
| SIGINT | 2 | Term | Interrupt from keyboard |
| SIGQUIT | 3 | Core | Quit from keyboard |
| SIGILL | 4 | Core | Illegal Instruction |
| SIGABRT | 6 | Core | Abort signal from abort(3) |
| SIGFPE | 8 | Core | Floating point exception |
| SIGKILL | 9 | Term | Kill signal |
| SIGSEGV | 11 | Core | Invalid memory reference |
| SIGPIPE | 13 | Term | Broken pipe: write to pipe with no readers |
| development: | |
| adapter: mysql2 | |
| encoding: utf8 | |
| database: my_database | |
| username: root | |
| password: | |
| apt: | |
| - somepackage | |
| - anotherpackage |
| package main | |
| import ( | |
| "fmt" | |
| "io" | |
| "log" | |
| "net/http" | |
| "os" | |
| ) |
| from math import log10 | |
| from random import randint | |
| def get_digit(number, base, pos): | |
| return (number // base ** pos) % base | |
| def prefix_sum(array): | |
| for i in range(1, len(array)): | |
| array[i] = array[i] + array[i-1] | |
| return array |
| #import random, math | |
| outputdebug = False | |
| def debug(msg): | |
| if outputdebug: | |
| print msg | |
| class Node(): | |
| def __init__(self, key): |
| #!/bin/bash | |
| exit 1 | |
| # get item list | |
| echo -e 'stats items \n quit' | curl -s -T - telnet://localhost:11211 | |
| # get by key | |
| echo -e 'get keyname \n quit' | curl -s -T - telnet://localhost:11211 |