⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains 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
壹多媒體娛樂服務股份有限公司 壹網樂/網樂通, https://www.nextvod.com.tw/ #nextvod #nextv | |
H/W | |
STMicroelectronics STx7105 (Renesas SuperH Core) | |
VIA VT6113 (Ethernet) | |
NANYA NT5TU64M16GG-AC (DRAM DDR2 64Mx16 PC800 BGA) * 2 | |
Samsung NCDOM08GMS-MLC (USB DOM 8GB) | |
Winbond 25Q80 1MB Spi Flash (Onboard Flash) | |
Console Pin headers |
This file contains 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
#!/bin/bash | |
concurrent=5 | |
max=81 | |
while [ $concurrent -lt $max ] | |
do | |
ab_args='-n 2000 -c '$concurrent | |
folder='run-'`date +'%Y%m%d%H%M%S'`'-'$concurrent |
Here are a list of headless browsers that I know about:
- [HtmlUnit][1] - Java. Custom browser engine. JavaScript support/DOM emulated. Open source.
- [Ghost][2] - Python only. WebKit-based. Full JavaScript support. Open source.
- [Twill][3] - Python/command line. Custom browser engine. No JavaScript. Open source.
- [PhantomJS][4] - Command line/all platforms. WebKit-based. Full JavaScript support. Open source.
- [Awesomium][5] - C++/.Net/all platforms. Chromium-based. Full JavaScript support. Commercial/free.
- [SimpleBrowser][6] - .Net 4/C#. Custom browser engine. No JavaScript support. Open source.
- [ZombieJS][7] - Node.js. Custom browser engine. JavaScript support/emulated DOM. Open source.
- [EnvJS][8] - JavaScript via Java/Rhino. Custom browser engine. JavaScript support/emulated DOM. Open source.
This file contains 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
import Data.Set | |
type State = String | |
type Alphabet = Char | |
type Language = String | |
type States = Set State | |
type Alphabets = Set Alphabet | |
type Transition = State -> Alphabet -> State | |
type NDTransition = State -> Alphabet -> States |
This file contains 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
16548dc8b59844ab98a7441f29a0cc47.chk Fri Dec 23 13:00:38 2011 | |
16548dc8b59844ab98a7441f29a0cc47.pkg Fri Dec 23 13:00:44 2011 | |
1a775d01cb9b7cebe769df1fc6251c5e.chk Wed May 23 18:17:24 2012 | |
1a775d01cb9b7cebe769df1fc6251c5e.pkg Wed May 23 18:17:29 2012 | |
1df400f2ecbb88c35692acbf6a960fa4.chk Fri Mar 25 16:14:39 2011 | |
1df400f2ecbb88c35692acbf6a960fa4.pkg Fri Mar 25 16:14:40 2011 | |
211bdc0fe6bc93ef7281c0e843012a05.chk Fri Sep 28 17:17:14 2012 | |
211bdc0fe6bc93ef7281c0e843012a05.pkg Fri Sep 28 17:17:22 2012 | |
22e6a539e4ae77860b85d363a9854753.chk Fri Sep 2 10:41:48 2011 | |
22e6a539e4ae77860b85d363a9854753.pkg Fri Sep 2 10:41:49 2011 |
This is a review of "Quantitative Analysis of the Full Bitcoin Transaction Graph" by Dorit Ron and Adi Shamir.
There are some incorrect details and analyses that warrant attention.
The authors have introduced several revisions to their paper, available at the same URL as before.
The criticism below may be outdated in part or in full.
NOTE: This Gist concerns the old Linode KVM Beta, NOT the current Manager. Please see linode/docs#501 (comment) for more up-to-date instructions.
You will need:
- Windows Server 2012 R2 iso. Obtain from MSDN
- A server with libvirt/virt-manager/KVM/etc set up.
- Fedora-sourced Windows virtio drivers: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.103-2/virtio-win-0.1.103.iso
- A Linode 1GB in the KVM beta, booted into Rescue mode, with a 20GB(20480MB) "raw" image.
On the KVM source, run the following to create a VM:
This file contains 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/python3 | |
""" | |
!! IMPORTANT !! | |
!! READ THIS !! | |
In order to run this script you need python3 and pip3 installed. | |
You also need some additional python modules. Please run | |
sudo pip3 install httplib2 oauth2client | |
sudo pip3 install --upgrade google-api-python-client | |
This file contains 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
''' | |
Script to archive Slack messages from a channel list. | |
You have to create a Slack Bot and invite him to private channels. | |
View https://github.com/docmarionum1/slack-archive-bot for how to configure your account. | |
Then provide the bot token to this script with the list of channels. | |
''' | |
TOKEN='xoxb-xxxxx-xxxxxx-xxxxxxxxxxx' | |
channels = { |
OlderNewer