- Abeja - Start-up that does analysis of people's shopping patterns in stores using cameras and stuff, sounds interesting; might not require Japanese
- Amazon - I THINK they now hire some developers
- Barclays - Self-explanatory; nice Mori Tower office
- Cookpad - Insanely popular recipe sharing service; I've heard it's kind of black from multiple Japanese people, but there are definitely good positions for foreigners; sweet Ebisu Garden Place office
- Crowdworks - Crowdsourcing, kind of like Japanese MechanicalTurk; very profitable
- CyberAgent (and CyberZ) - Big company; rich as hell; lots of foreigners; considered one of the best mid-sized Japanese tech companies to work for
- Degica - eCommerce plat
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
/** | |
* Node script to query the apple stock JSON blob and report which stores have iphone 6 stock | |
* Change the model nums and models below. | |
* | |
* Based on work done by andyberry88 and jbrooksuk | |
*/ | |
var https = require('https'); | |
var Notification = require('node-notifier'); | |
var Repeat = require('repeat'); |
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
# 32-bit | |
wget https://phantomjs.googlecode.com/files/phantomjs-1.9.2-linux-i686.tar.bz2 | |
bunzip2 phantomjs-1.9.2-linux-i686.tar.bz2 | |
tar xf phantomjs-1.9.2-linux-i686.tar | |
mv phantomjs-1.9.2-linux-i686/ /opt/ | |
ln -s /opt/phantomjs-1.9.2-linux-i686/ /opt/phantomjs | |
ln -s /opt/phantomjs/bin/phantomjs /usr/local/bin/ | |
#check what you've just done | |
which phantomjs |
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
/** | |
* CasperJS script to claim NCIX.com newsletter points by batch of emails. | |
* Takes newsletter email URL as CLI argument. | |
* All emails filled in below must be registered to NCIX.com. | |
* | |
* For demo purposes only. | |
*/ | |
var emails = [ | |
'[email protected]', |
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
import java.util.ArrayList; | |
import java.util.Iterator; | |
import java.util.LinkedList; | |
import java.util.Queue; | |
public class ListAtDepthBtree { | |
ArrayList al = new ArrayList(); | |
public void levelOrder(Node root){ | |
int h = height(root); |
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
//Inspired by: http://planetozh.com/blog/2012/10/generate-random-pronouceable-words/ | |
func randomWord(wordLength: Int = 6) -> String { | |
let kCons = 1 | |
let kVows = 2 | |
var cons: [String] = [ | |
// single consonants. Beware of Q, it"s often awkward in words | |
"b", "c", "d", "f", "g", "h", "j", "k", "l", "m", | |
"n", "p", "r", "s", "t", "v", "w", "x", "z", |
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
#!/bin/sh | |
# | |
# CloudFlare Dynamic DNS | |
# | |
# Updates CloudFlare records with the current public IP address | |
# | |
# Takes the same basic arguments as A/CNAME updates in the CloudFlare v4 API | |
# https://www.cloudflare.com/docs/client-api.html#s5.2 | |
# | |
# Use with cron jobs etc. |
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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Original author: | |
" Amir Salihefendic | |
" http://amix.dk - [email protected] | |
" http://amix.dk/vim/vimrc.html | |
" | |
" Sections: | |
" -> General | |
" -> VIM user interface | |
" -> Colors and Fonts |
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
// ==UserScript== | |
// @name Shinsei Bank Helper | |
// @namespace https://gist.github.com/apparition47/e8671954c614385b78ed9e8b2cde98e6 | |
// @version 0.6 | |
// @description Disable Security Keyboard & Optional account/Security Card Login Auto-Fill | |
// @author apparition47 | |
// @match https://*.shinseibank.com/FLEXCUBEAt/LiveConnect.dll* | |
// @match http://www.shinseibank.com/* | |
// @grant none | |
// ==/UserScript== |
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
function * sent(sentence) { | |
while (1) { | |
for (i=0; i<sentence.length; i++) { | |
yield sentence[i] | |
} | |
} | |
} | |
const fits = (rows, cols, sentence) => { | |
let placements = 0 |
OlderNewer