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
/** | |
It prevents UIDevice.uniqueIdentifier method from returning real UDID vaue. | |
It is useful to prevent closed-source libralies to fetch users' UDIDs against | |
your will. | |
*/ | |
@interface UIDevice (UDIDkiller) | |
-(NSString*)uniqueIdentifier; | |
@end |
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
javascript:(function(){alert(document.querySelectorAll('div.profilePic>img')[0].src.match(/.*\/\d+_(\d+)_\d+_.\.jpg/)[1])})(); | |
// http://www.facebook.com/profile.php?id=XXXXXXX |
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
// ==UserScript== | |
// @name Gmail Clickable Logo | |
// @namespace http://www.maripo.org | |
// @description Wrap Gmail's logo by a link to "Inbox" | |
// @include https://mail.google.com/* | |
// ==/UserScript== | |
( | |
function() | |
{ | |
setTimeout ( |
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
var embeds = document.getElementsByTagName('EMBED'); | |
for (var i=0, l=embeds.length; i<l; i++) | |
{ | |
var embed = embeds[i]; | |
embed.setAttribute('wmode', 'transparent'); | |
var param = document.createElement('PARAM'); | |
param.name = 'wmode'; | |
param.value = 'transparent'; | |
if ('OBJECT'==embed.parentNode.tagName) | |
{ |
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
<meta-data android:name="android.nfc.action.TECH_DISCOVERED" | |
android:resource="@xml/nfc_tech_list" /> |
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
FB.ui({ | |
method: 'apprequests', | |
message: 'TITLE', | |
filters:[ | |
{name: 'CategoryA', user_ids: [userId0, userId1]}, | |
{name: 'CategoryB', user_ids: [userId2, userId3, userId4]} | |
] | |
}, requestCallbak); |
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
神聖大宇宙まりぽ帝国 国歌 | |
0番 | |
まりぽ帝国 果てしなく広がる領土 | |
まりぽ皇帝 尽きることなき野望 | |
鉄の絆で結ばれし 我らは築く 新たなる世界を | |
まりぽ帝国 果てしなく広がる領土 | |
まりぽ皇帝 尽きることなき野望 | |
1番 |
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
javascript:(function(){as=document.getElementsByTagName('A');for(i=0;i<as.length;i++){a=as[i];attr=a.getAttribute('data-ultimate-url');if(attr){a.innerHTML=attr}}})(); |
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
// ==UserScript== | |
// @name ExpandShortURLs | |
// @namespace maripo.org | |
// @description Expand shortened URL on Twitter | |
// @include https://twitter.com/* | |
// @version 1 | |
// ==/UserScript== | |
(function() | |
{ |
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
package org.maripo.test; | |
import java.awt.image.BufferedImage; | |
import java.io.File; | |
import java.io.IOException; | |
import javax.imageio.ImageIO; | |
import org.junit.Assert; |
OlderNewer