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
function tweetTodaysData(){ | |
const today = new Date(); | |
const range = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("data").getDataRange(); | |
for (let r = 1; r < range.getNumRows()+1; r++) { | |
const date = range.getCell(r, 1).getValue(); | |
if (typeof date.getMonth !== 'function') { continue; } | |
if (date.getMonth() == today.getMonth() && date.getDate() == today.getDate()){ | |
tweetText(range.getCell(r, 6).getValue()); | |
} | |
} |
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
/* | |
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. |
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
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 |
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
# -*- 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' |
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
# 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, # 携帯電話 |
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
location.href='http://sssslide.com/'+location.href.replace('/mobile/','/') |
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
$ emacs ~/bin/sleep | |
#!/usr/bin/osascript | |
tell application "Finder" to sleep |
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
#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; |
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/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" |
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
# -*- 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 |
NewerOlder