Project: vim-sol
- Thu Sep 26 19:23:01 2013.
Ready for General use !
This is the Gvim push Terminal is the works ! :) Airline supported ! (pushed the supporting airline theme to vim-airline repo)
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout somewhen, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
import requests | |
import lxml | |
from lxml import html | |
r = requests.get('http://gun.io') | |
tree = lxml.html.fromstring(r.content) | |
elements = tree.get_element_by_id('frontsubtext') | |
for el in elements: | |
print el.text_content() |
Ok, so git is currently pointing to | |
commit 5427b02712828b2875d35b5ee1c8b5e58f820537 | |
Merge: aa2dfa9 3cc97f4 | |
Author: Dave Halter <[email protected]> | |
Date: Wed Apr 5 20:00:16 2017 +0200 | |
Merge branch 'dev' | |
Verifying that +pratheek is my blockchain ID. https://onename.com/pratheek |
# | |
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
# Version 2, March 2014 | |
# | |
# Copyright (C) 2014 Pratheek (contact me via github) | |
# | |
# Everyone is permitted to copy and distribute verbatim or modified | |
# copies of this license document, and changing it is allowed as long | |
# as the name is changed. | |
# |
#!/usr/bin/env sh | |
# Prints out Zen quotes, pushed out by https://api.github.com | |
# | |
# **NOTE**: there is a limit to the number of requests that | |
# can be made. (I think it's a max of 40 unauthenticated requests) | |
# after that, its prints out a message tell you've exceeded rate limit. | |
# | |
# License: WTFPL | |
# |
Ready for General use !
This is the Gvim push Terminal is the works ! :) Airline supported ! (pushed the supporting airline theme to vim-airline repo)
Sat Sep 7 17:30:00 2013.
Added screenshot for startify plugin
Sat Sep 7 16:03:45 2013.
#!/usr/bin/env python | |
#-*- coding:utf-8 -*- | |
from __future__ import print_function | |
from subprocess import check_output | |
heart = '♥' | |
bolt = '⚡' | |
#!/usr/bin/env node | |
var util = require('util'), | |
http = require('http'), | |
fs = require('fs'), | |
url = require('url'), | |
events = require('events'); | |
var DEFAULT_PORT = 8000; |