Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
# coding=UTF-8 | |
from __future__ import division | |
import nltk | |
from collections import Counter | |
# This is a simple tool for adding automatic hashtags into an article title | |
# Created by Shlomi Babluki | |
# Sep, 2013 | |
;;; I'm not using Om yet because I've got a lot of code using Pump and just haven't made the transition, | |
;;; but the principles are all the same. So you'll see Pump-specific code here. | |
(def code->key | |
"map from a character code (read from events with event.which) | |
to a string representation of it. | |
Only need to add 'special' things here." | |
{13 "enter" | |
37 "left" | |
38 "up" |
Оператор | Баланс | Свой номер |
---|---|---|
ТЕЛЕ2 | *105# | *201# |
Мегафон | *100# | *205# |
МТС | *100# | 1110887# |
Билайн | *102# | 11010# |
<!DOCTYPE NETSCAPE-Bookmark-file-1> | |
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
<!-- This is an automatically generated file. | |
It will be read and overwritten. | |
Do Not Edit! --> | |
<TITLE>Bookmarks</TITLE> | |
<H1>Bookmarks</H1> | |
<DL><p> | |
<DT><A HREF="https://developer.apple.com/library/mac/releasenotes/InterapplicationCommunication/RN-JavaScriptForAutomation/index.html#//apple_ref/doc/-%20uid/TP40014508" ADD_DATE="1414706885" PRIVATE="0" TAGS="javascript,mac,osx,yosemite">JavaScript for Automation Release Notes</A> | |
<DD>This article describes JavaScript for Automation, a new feature in OS X Yosemite. |
# | |
# KiCad outputs Gerber files with extensions that aren't recognized by the most commonly used | |
# PCB manufacturers. This Python script renames the files to what they expect. | |
# Just execute this script in your KiCad project directory and the Gerber files will be renamed. | |
# | |
import glob | |
import os | |
# Make a list of .gbr and .drl files in the current directory. |
Graphic via State of Florida CFO Vendor Payment Search (flair.myfloridacfo.com)
This is a quick command I use to snapshot webpages that have a fun image I want to keep for my own collection of WTFViz. Why not just right-click and save the image? Oftentimes, the webpage in which the image is embedded contains necessary context, such as captions and links to important documentation just incase you forget what exactly that fun graphic was trying to explain.
(ns oxygen.client | |
"A minimal Clojure client for Airtable.com's HTTP API. | |
Supports retrieval of whole tables as well as individual records. | |
Dependencies: [org.clojure/data.json \"0.2.6\"] [clj-http \"2.0.0\"]" | |
(:require [clojure.data.json :as json] | |
[clojure.string :as string] | |
[clojure.set :as set] | |
[clj-http.client :as client])) | |
(def api-base "https://api.airtable.com/v0") |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft
, elem.offsetTop
, elem.offsetWidth
, elem.offsetHeight
, elem.offsetParent
(ns last2kee.core | |
(:require [clojure.set :as set] | |
[clojure.data.csv :as csv] | |
[clojure.data.xml :as xml] | |
[clojure.string :as string] | |
[clojure.java.io :as io])) | |
(defn csvvec-to-map [csvdata] | |
(map #(zipmap (first csvdata) %) (rest csvdata))) |