Skip to content

Instantly share code, notes, and snippets.

View posaunehm's full-sized avatar

Hiroshi Maekawa (a.k.a. Posaune) posaunehm

View GitHub Profile
@posaunehm
posaunehm / demo.js
Last active August 23, 2018 14:14
Puppeteer recorder demo
const puppeteer = require('puppeteer');
(async () => {
const browser = await puppeteer.launch()
const page = await browser.newPage()
const navigationPromise = page.waitForNavigation()
await page.setViewport({ width: 1920, height: 1103 })
await page.goto('https://www.yahoo.co.jp/')
await page.click('form > #srchfield > #srchbd > p > #srchbtn')
await navigationPromise
await page.click('#WS2m > .w:nth-child(1) > .hd > h3 > a')
@posaunehm
posaunehm / ThreePhaseTest.java
Created December 12, 2017 01:42
3フェーズテストの説明
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class ThreePhaseTest {
@Test
void firstTest() {
// Arrange
@posaunehm
posaunehm / NoSemicolonCsTest.cs
Created October 22, 2014 15:27
セミコロンレスC# ?
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
if (
System.Console.OpenStandardOutput()
.WriteAsync(System.Text.Encoding.Default.GetBytes("Hello Semicolonless World !!"), 0, System.Text.Encoding.Default.GetBytes("Hello Semicolonless World !!").Length) == null)
{ }
@posaunehm
posaunehm / Sample.cs
Last active August 29, 2015 14:07
An sample method for Typetalk api with C# (https://developer.nulab-inc.com/docs/typetalk)
// Refer follwing modules:
// using System.Collections.Generic;
// using System.Net.Http;
// using System.Web.Script.Serialization;
private async void Application_Startup(object sender, StartupEventArgs e)
{
var clientId = "xxxxxxxxxxxx";
var clientSecret = "xxxxxxxxxxxxxxx";
var topicId = 0; //use your topic id

きょんさんの資料, 自動テストの誤解とアンチパターン in 楽天 Tech Talkを読んでもやもやしたところをつらつらと。

疑問

  • 因子水準

    • ググると実験計画法が出てくる
    • 自由度的な意味で捉えればOK?
  • 「統合テスト実装者が得る幅広いプログラミングスキルとアーキテクチャ知識である」

    • 主客逆では?
@posaunehm
posaunehm / twelve_factor.rb
Created January 10, 2014 16:04
http://twelve-factor-ja.herokuapp.com/ をepub/mobi化するスクリプト
# -*- coding: utf-8 -*-
require 'nokogiri'
require 'open-uri'
require "FileUtils"
target = "http://twelve-factor-ja.herokuapp.com"
html = Nokogiri::HTML(open(target))
top_article = html.css(".abstract")
@posaunehm
posaunehm / gist:8300175
Created January 7, 2014 14:35
call pandoc for JavaScript-Garden
pandoc title.txt intro/index.md object/general.md object/prototype.md object/hasownproperty.md object/forinloop.md function/general.md function/this.md function/closures.md function/arguments.md function/constructors.md function/scopes.md array/general.md array/constructor.md types/equality.md types/typeof.md types/instanceof.md types/casting.md core/eval.md core/undefined.md core/semicolon.md core/delete.md other/timeouts.md -o Javascript-Garden.epub
@posaunehm
posaunehm / scraping_coq.rb
Last active January 2, 2016 09:39
プログラミング Coq(http://www.iij-ii.co.jp/lab/techdoc/coqt/coqt1.html) から電子書籍を作ります。 Nokogiriとcalibre コマンドラインツール必須。
require 'nokogiri'
require 'open-uri'
require "FileUtils"
target = "http://www.iij-ii.co.jp/lab/techdoc/coqt/"
html = Nokogiri::HTML(open(target))
url_list = html.css("#home-main ol li a").collect{|a| target + a["href"]}
require 'nokogiri'
require 'open-uri'
require "FileUtils"
html = Nokogiri::HTML(open("http://peta.okechan.net/blog/llvm%E3%81%AB%E3%82%88%E3%82%8B%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%9F%E3%83%B3%E3%82%B0%E8%A8%80%E8%AA%9E%E3%81%AE%E5%AE%9F%E8%A3%85"))
url_list = html.css("article li a").collect{|a| a["href"]}
article_list = url_list.collect{|url|
article_doc = Nokogiri::HTML(open(url))
@posaunehm
posaunehm / gist:7670851
Created November 27, 2013 04:55
環境変数をPowerShellから設定する。 参考:http://mtgpowershell.blogspot.jp/2011/01/blog-post_14.html 呼び出すメソッドはこれ。 http://msdn.microsoft.com/ja-jp/library/96xafkes.aspx 第3引数は、Machine, User, Processのいずれか。 http://msdn.microsoft.com/ja-jp/library/system.environmentvariabletarget.aspx
[Environment]::SetEnvironmentVariable(“temp”, “D:\temp”, “User”)