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/local/bin/python3 | |
| import os | |
| import re | |
| import subprocess | |
| from typing import Optional, Sequence | |
| from pathlib import Path, PurePath | |
| doc_path: Optional[str] = os.getenv('BB_DOC_PATH') |
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
| def n5s(str) | |
| first, num, last = str.match(/([a-zA-Z])(\d+)([a-zA-Z])/).captures | |
| num = num.to_i | |
| puts open("/usr/share/dict/words").grep(/\b#{first}[a-zA-Z]{#{num}}#{last}\b/) | |
| end | |
| > n5s("i18n") | |
| institutionalization | |
| intercrystallization | |
| interdifferentiation |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>BBEditDocumentType</key> | |
| <string>CodelessLanguageModule</string> | |
| <key>BBLMColorsSyntax</key> | |
| <string>YES</string> | |
| <key>BBLMIsCaseSensitive</key> | |
| <string>YES</string> |
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 ruby | |
| # encoding: UTF-8 | |
| require 'stringio' | |
| require 'rubygems' | |
| require 'ruby-debug' | |
| lines = [] | |
| ARGF.each_line do |ea| | |
| # strip bash color codes |
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
| if appIsRunning("Rdio") then | |
| tell application "Rdio" to playpause | |
| else if appIsRunning("iTunes") then | |
| tell application "iTunes" to playpause | |
| end if | |
| on appIsRunning(appName) | |
| tell application "System Events" to (name of processes) contains appName | |
| end appIsRunning |
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
| irb(main):001:0> def method_missing(*args) | |
| irb(main):002:1> puts 'method missing' | |
| irb(main):003:1> end | |
| => nil | |
| irb(main):004:0> require 'rubygems' | |
| => true | |
| irb(main):005:0> require 'activesupport' | |
| method missing | |
| method missing | |
| method missing |
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
| Total: 387 samples | |
| 87 22.5% 22.5% 121 31.3% Thrift::BaseTransport#read_all | |
| 77 19.9% 42.4% 77 19.9% garbage_collector | |
| 26 6.7% 49.1% 26 6.7% Thrift::FramedTransport#read | |
| 25 6.5% 55.6% 181 46.8% Object#read | |
| 21 5.4% 61.0% 70 18.1% ActiveSupport::JSON.encode | |
| 18 4.7% 65.6% 199 51.4% Object#receive_message | |
| 16 4.1% 69.8% 27 7.0% RainbirdClient#encode | |
| 14 3.6% 73.4% 14 3.6% Array#include? | |
| 11 2.8% 76.2% 65 16.8% Array#to_json |
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
| twttr.txt.autoLinkWithEntities = function(text, entities) { | |
| var result = []; | |
| var allEntities = []; | |
| var addEntities = function (key, array) { | |
| if (entities[key]) { | |
| array.push.apply(array, entities[key].map(function (ea) { return {type: key, value: ea}})); | |
| }; | |
| }; |
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
| var date = new Date("Nov 7 2010 1:00 AM PDT"); | |
| var bananas = new Date("Nov 7 2010 1:00 AM PDT"); | |
| bananas > date //ok | |
| // > false | |
| bananas.setFullYear(2010) | |
| // > 1289120400000 | |
| bananas > date //what? | |
| // > true | |
| bananas.getTime() - date.getTime() |
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
| /* | |
| HTTP Host: static.ak.fbcdn.net | |
| Generated: April 26th 2010 3:53:31 PM PDT | |
| Machine: 10.16.139.107 | |
| Locale: nu_ll | |
| Path: js/19khsprwvtvokwow.pkg.js | |
| */ | |
| if (window.CavalryLogger) { CavalryLogger.start_js(["js\/19khsprwvtvokwow.pkg.js"]); } |
NewerOlder