荷物受付 	01/06 	18:38 	川崎大川町センター 	028145
発送 	01/06 	18:38 	川崎大川町センター 	028145
作業店通過 	01/06 	20:14 	神奈川ベース店 	028990
作業店通過 	01/07 	04:06 	西埼玉ベース店 	034990
配達日・時間帯指定(保管中) 	01/07 	08:18 	埼玉藤久保センター 	034171

ALEX PCで中古Let's noteを注文。その時の記録。
月曜深夜に発注し、火曜日の18時に川崎センターに荷物が届く、夜のうちに埼玉まで移動して、8時には配送準備完了。時間指定配達のため20時までお預けだが、注文から到着まで実質二日程度か?明日楽対応店舗なので、発送作業も早いのだろう。


Selenium Webdriver
http://qiita.com/yacchin1205/items/cadc2a724d433511f0a6

複式簿記

http://boki.popnavi.net/016qa/post_42.html


-OPML (podcast)

podcast addictでもiTunesでも使える。

*Android初期化準備 [#n3382cc5]

**アプリの列挙 [#se7a91bb]

+OPML

**録音データと写真データバックアップ(SDにあれば後回しでもよい) [#cdd2ecaf]

**初期化 [#d6267395]

factory resetで検索する。

d2105 factory reset

*コンパクトデジカメ [#v2b5caee]

要件
+防水・防寒
+リモコン対応
+WIFI(必須ではない)

候補

+WG-20

*WP [#fc009b56]

http://bazubu.com/wordpress-plugin-11415.html


*UDACITY [#bd8b7db8]

*PlayFramework [#a99b8d2f]

Javaでruby on rails的な開発を実現

*Grunt [#of12ea0e]

コードのチェックや画像の圧縮などを行う

*WebDriver [#meb4c4ed]

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.Wait;
import org.openqa.selenium.support.ui.WebDriverWait;

public class HpTest {

	public static void main(String[] args) throws InterruptedException {
		WebDriver driver = new FirefoxDriver();
		driver.get("https://example.com/Login");
		// 30秒待つ設定
		Wait<WebDriver> wait = new WebDriverWait(driver, 30);
		// Login page
		WebElement button = wait.until(ExpectedConditions
				.elementToBeClickable(By.id("loginButton")));
		driver.findElement(By.id("userId")).sendKeys("xxx");
		driver.findElement(By.id("password")).sendKeys("xxx");
		button.submit();


		//_id25:_id65
		button = wait.until(ExpectedConditions
				.presenceOfElementLocated(By.id("_id25:_id65")));
		button.click();
		System.out.println("ボタンsumit");
		Thread.sleep(100000);
		driver.quit();
	}
}

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS