Skip to content

Instantly share code, notes, and snippets.

View dai's full-sized avatar
🗻
still Catch it Up.

dai dai

🗻
still Catch it Up.
View GitHub Profile
#!/usr/bin/env perl
use strict;
use warnings;
use Pod::Usage;
use Text::Markdown 'markdown';
use HTML::TreeBuilder;
use List::Util 'max';
use Encode;
@dai
dai / rewind_x_UA.md
Created February 19, 2013 13:36
今やua rwdrとかトリガー元追えるアプリあるのにね。

な、なんと。ツイッターにクソ オールド スクールなexploit DMがきた!そもそもDMなんてgmailでプレビューできちゃうので久しく見てないんだけど...💡ちょっと待って、水を得た何某。そのままにしてハアハアしてる。

@dai
dai / index.html
Created November 6, 2012 01:51 — forked from abraham/index.html
ADN Widgets alpha install instructions
<html>
<head>
<!-- ADN Widgets alpha -->
<!-- Sign up for alpha deprecation announcements: https://groups.google.com/forum/#!forum/adn-widgets-announce -->
<!-- To install: include script on your web site and add the <a> tag where you want the follow button -->
<!-- Tested to work in the latest Chrome, Firefox, Safari, and IE9 -->
<!-- ADN Widgets: https://alpha.app.net/widgets -->
<script async src='https://adnwidgets.herokuapp.com/alpha.js'></script>
</head>
みなさまのアプリケーションをより リッチに表現する のに是非ご使用ください。
http://msdn.microsoft.com/ja-jp/hh544699.aspx
dwm.vim adds tiled window management capabilities to Vim.
It is highly inspired by dwm (Dynamic Window Manager) [http://dwm.suckless.org/] tiled layout management.
Windows are always organised as follows:
=================
|              |       S1         |
|              |==========
|      M     |       S2         |
|              |==========
The Carlyle Groupによれば、この買収によって同社がGetty Imagesの株式を100%取得するわけではない。代わりに、Getty Imagesの主要株主である投資会社のHellman & Friedmanを買収してGetty Imagesの「支配権」を取得する方式をとるという。
http://japan.cnet.com/news/business/35020499/?tag=top;notification
僕が先にゲッティしたかったのに><
ともかくパナイディールだ!!(マニーよりも支配権的に大きい出来事。)
<味もボリュームも満点のカツカレー>
ガリガリッとした食感で、ソースとの相性抜群。これぞカツカレーのカツと思わず膝を打った。
 ボリュームも満点で、いくら食べても終わりが見えない。卓上のチリパウダーやソースで味に変化をつけ、何とか完食。
恐るべきコストパフォーマンスである。神保町駅A5出口から白山通りを水道橋方面へ3分ほど歩いた右手路地にある。
http://oryouri.2chblog.jp/archives/7387057.html
@dai
dai / flash_entitlements.xml
Created August 9, 2012 17:06
Flash Player 11.4 Beta 2 - Notes for iOS Push Notifications.
<iPhone>
<Entitlements>
<![CDATA[
<key>get-task-allow</key>
<true/>
<key>aps-environment</key>
<string>development</string>
<key>keychain-access-groups</key>
<array>
<string>KEYCHAIN_ACCESS_GROUP</string>
@dai
dai / string.xml
Created July 16, 2012 13:40
japanese string.xml for android apps.
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2012 GitHub Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
@dai
dai / egintent.java
Created July 11, 2012 05:19
Example: Using Intent to Twitter. / by harukazepc(http://d.hatena.ne.jp/harukazepc/20111219/1324260914#intent)
var shareButton = Ti.UI.createButton({title:'share'});
shareButton.addEventListener('click',function(e) {
var shareText = 'share the text';
// ボタン押したら、ACTION_SEND対応のアプリへ暗黙インテント発行
var intent = Ti.Android.createIntent({
action: Ti.Android.ACTION_SEND
});
// EXTRA_TEXTとして、shareTextの内容を渡す
intent.putExtra(Ti.Android.EXTRA_TEXT,shareText);