コンピュータや音楽の事書いてます

2013-04-01から1ヶ月間の記事一覧

ingressのCOMMの会話ログ取得

http://www.ingress.com/intel のログを過去に遡ろうとすると結構大変なので。 AllかFaction、とりたい方を選択しておく マップの範囲も調節しておく Firefoxの場合、COMM内を右クリック「Firebugで要素を調査」 Chromeの場合、COMM内を右クリック「要素を検…

Haskellメモ:遅延評価と末尾再帰とStack space overflow

dl = [ x/100 | x <- [1..] ] dlの頭から、指定した値を超えないところまで合計をだす。 sumlist (x:xs) n = if x >= n then 0 else x + sumlist xs n sumlist dl 10000 とすれば9999.99までの合計がだせるはず。だけど Stack space overflow になってしまう…

Select して、ToListして、ForEach

private void button1_Click(object sender, EventArgs e) { textBox1.Text = ""; new List<int> { 1, 2, 3, 4, 5 } .Select(x => (x * 2).ToString()) .ToList() .ForEach(x => textBox1.Text += x + ","); }</int>

Kindle Fire HD のroot化メモ その2

http://d.hatena.ne.jp/neuromancer_sho/20121221/1356057155 の続きいつの間にかroot権限が解除されていた。多分amazonのアップデートのせいだろう。前回と同じ手順をもう1回やったら、root奪還までは出来た。しかし、Nova Launcherをホームに出来ない。 R…

メモ: LINQは便利

using System.Linq; using PowerPoint = Microsoft.Office.Interop.PowerPoint; PowerPoint.Presentation pres = /* 何かのパワポのファイル */; pres.Windows.OfType<PowerPoint.DocumentWindow>() .Where(w => w.ViewType == PowerPoint.PpViewType.ppViewNormal) .ElementAt(0).Panes</powerpoint.documentwindow>…

ありそうで無い scriptTester

貼り付けて、ボタン押すだけ。vbscript, jscriptの実行。 scriptTester.zip using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System…