View CircularLED.cpp
/* | |
2012 Copyright (c) Seeed Technology Inc. | |
Author: LG | |
This library is free software; you can redistribute it and/or | |
modify it under the terms of the GNU Lesser General Public | |
License as published by the Free Software Foundation; either | |
version 2.1 of the License, or (at your option) any later version. |
View docker-compose.yml
version: '2' | |
services: | |
volume: | |
image: alpine:latest | |
entrypoint: /bin/true | |
volumes: | |
- ./etc/rundeck:/etc/rundeck | |
- ./var/rundeck:/var/rundeck | |
- ./var/lib/rundeck/.ssh:/var/lib/rundeck/.ssh | |
- ./var/lib/rundeck/logs:/var/lib/rundeck/logs |
View wget_scraper.rb
# -*- encoding: utf-8 -*- | |
require 'lib/scraper.rb' | |
require "uri" | |
require "kconv" | |
#WEBページを取得する際、キャッシュやアクセス時間の間隔などを配慮するためのクラス | |
class WgetScraper < Scraper | |
include DebugLog | |
CACHE_DIR = '/tmp/WgetScraper/' | |
COOKIE_FILE = '/tmp/WgetScraper/cookie.txt' |
View gist:77bacad211389f739a3d
# encoding: utf-8 | |
module TelSplitter | |
MAP = { | |
# 市外局番 , 市内局番の桁数のマップ | |
# http://www.soumu.go.jp/main_sosiki/joho_tsusin/top/tel_number/number_shitei.html のデータを利用 | |
# 固定電話以外の桁数は適当です... | |
'050' => 4, # IP電話 | |
'070' => 4, # 携帯電話/PHS | |
'080' => 4, # 携帯電話 |
View gist:b2e49120b3f98a0cb8ae
location.href='http://sssslide.com/'+location.href.replace('/mobile/','/') |
View file0.txt
$ emacs ~/bin/sleep | |
#!/usr/bin/osascript | |
tell application "Finder" to sleep |
View main.css
#main li:nth-of-type(3n), | |
#main li:nth-of-type(5n){ | |
visibility: hidden; | |
} | |
#main li:nth-of-type(3n):before, | |
#main li:nth-of-type(5n):before, | |
#main li:nth-of-type(15n):before{ | |
visibility: visible; | |
display: inline; |
View test_with_saucelab.rb
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'selenium-webdriver' | |
caps = Selenium::WebDriver::Remote::Capabilities.iphone | |
caps.version = "5.0" | |
caps.platform = :MAC | |
caps[:name] = "Testing Selenium 2 with Ruby on Sauce" |
View saucelabsTestCase.rb
# -*- encoding: utf-8 -*- | |
require "rubygems" | |
require "selenium-webdriver" | |
require "test/unit" | |
module HtmlTestSuppeter | |
def element_present?(how, what) | |
@driver.find_element(how, what) | |
true | |
rescue Selenium::WebDriver::Error::NoSuchElementError |
View app.js
(function(){ | |
Window = require('map_view'); | |
var win = new Window({ | |
title:'map' | |
}); | |
win.open(); | |
})(); |
NewerOlder