I hereby claim:
- I am luqmaan on github.
- I am luqmaan (https://keybase.io/luqmaan) on keybase.
- I have a public key whose fingerprint is DBF8 58BC 56FB CC2F 59D1 91A6 17DF AA03 72AC 4382
To claim this, I am signing this object:
{ | |
"pep8": false, | |
"sublimelinter_disable": [ | |
"python", | |
"pep8" | |
], | |
"javascript_linter": "jshint", | |
"jshint_options": { | |
"white": false, | |
"indent": 4, |
/* | |
A Verilog implementation of a finite state machine to determine the | |
modulus of any number by three, in realtime. | |
The number can be input in most significant bit (MSB) first or least | |
significant bit (LSB) first order. The msb_modulus and lsb_modulus | |
modules return the modulus of the number as the number is entered. | |
Uses only and, or, not, xor, and nand gates. Also uses a clock to | |
coordinate the modules. |
{ | |
// whether or not pkg files should be automatically saved when necessary (e.g. when running 9o `replay` or `go test` commands) | |
"autosave": false, | |
// Whether or not gscomplete(gocode) is enabled | |
"gscomplete_enabled": true, | |
// Whether or not gsfmt is enabled | |
"fmt_enabled": true, |
import time | |
import urllib | |
url = 'http://pub1.di.fm/di_classictrance' | |
filename = 'a.mp3' | |
time_limit = 10 | |
starttime = time.time() | |
def callback(count, blocksize, filesize): |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
#include <sys/dir.h> | |
int main(int argc, char **argv) { | |
DIR* midir; | |
if ((midir=opendir(argv[1])) < 0) { |
[ | |
{"keys":["ctrl+k","ctrl+u"], "command":"toggle_setting", "args":{"setting":"line_numbers"}}, | |
{"keys":["ctrl+k","ctrl+g"], "command":"toggle_setting", "args":{"setting":"gutter"}}, | |
/* I wish this worked {"keys":["ctrl+k","ctrl+t"], "command":"toggle_setting", "args":{"setting":"show_tabs"}},*/ | |
{"keys":["ctrl+k","ctrl+c"], "command":"toggle_setting", "args":{"setting":"draw_centered"}}, | |
{"keys":["f5"], "command":"next_bookmark"}, | |
{"keys":["f6"], "command":"prev_bookmark"}, | |
{"keys":["shift+f5"], "command":"toggle_bookmark"}, | |
{"keys":["shift+f6"], "command":"toggle_bookmark"}, | |
{"keys":["super+alt+control+shift+f6"], "command":"clear_bookmarks"}, |
{ | |
"auto_match_enabled": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Solarized Color Scheme/Solarized (light).tmTheme", | |
"detect_indentation": false, | |
"draw_white_space": "selection", | |
"ensure_newline_at_eof_on_save": true, | |
"expand_tabs_on_save": true, | |
"find_selected_text": true, | |
"folder_exclude_patterns": |
POST http://www.capmetro.org/planner/s_nextbus2.asp with querystring | |
``` | |
stopid:5868 | |
route:801 | |
dir:N | |
output:json | |
opt:2 | |
min:1 | |
``` |
I hereby claim:
To claim this, I am signing this object:
import argparse | |
from pprint import pprint | |
import re | |
def count_leading_spaces(line): | |
return len(line) - len(line.lstrip(' ')) | |
def sass_to_scss(sass_lines): |