This file contains hidden or 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
#### Requires #### | |
# goslate==1.3.0 | |
# polib==1.0.5 | |
#### / #### | |
import os, sys | |
import goslate | |
import argparse | |
import polib |
This file contains hidden or 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== | |
// @id IITC-neutralized_marker_style | |
// @name IITC: Neutralized marker style | |
// @author ozero | |
// @category Misc | |
// @version 0.25.1.20190426.01 | |
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion | |
// @updateURL none | |
// @downloadURL none | |
// @description neutralized marker style |
This file contains hidden or 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
// Wireframe rules | |
// Created by Igor Brejc | |
// Edited by Rory Fitzpatrick | |
// Released under the Creative Commons Attribution-ShareAlike 3.0 License (http://creativecommons.org/licenses/by-sa/3.0/) | |
features | |
points, areas | |
bus stop : highway=bus_stop | |
railway station : railway=station |
This file contains hidden or 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
/* | |
OSX ミミカキエディット3 向け テキストファイル 一括置換 JSマクロ | |
Mi3 ( http://www.mimikaki.net/ ) 専用。Mi2以前は不可。 | |
mi3 jsリファレンス | |
https://www.mimikaki.net/mi3/help/ja/JavaScript.htm | |
*/ |
This file contains hidden or 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
<?php | |
$token ='******PASTE YOUR TOKEN HERE******'; | |
$count = 100; | |
/* | |
Delete old and big files on Slack. | |
- 10MB over: can be stored up to 3 months |
This file contains hidden or 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
class ViewController: UIViewController { | |
var imagesArraySlideshow : [UIImage] = [] | |
var slideShowIndex:NSInteger = 0 | |
var slideShowMax:NSInteger = 0 | |
var ivSlideshow:UIImageView = UIImageView() | |
override func viewDidLoad() { | |
super.viewDidLoad() |
This file contains hidden or 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
$(".im_history_message_wrap").each(function(){ | |
var el = $(this); | |
var date = $(".im_message_date",this).data('content'); | |
var user = $(".im_message_author",this).text(); | |
var reply_from = $(".im_message_reply_author span",this).text(); | |
var reply = $(".im_message_reply_body .im_short_message_text",this).text(); | |
reply = (reply != "")?"( " + reply_from + ": " + reply + " ) : " : ""; | |
reply.replace(/\r/g, ""); | |
reply.replace(/\n/g, ""); | |
var body = $(".im_message_text",this).text(); |
This file contains hidden or 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== | |
// @id iitc-plugin-post-comm-multiline | |
// @name IITC plugin: Post comm in multiline | |
// @category Misc | |
// @version 0.2.0.20220122.02 | |
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion | |
// @updateURL none | |
// @downloadURL none | |
// @description Post comm in multiline | |
// @include https://*.ingress.com/* |
This file contains hidden or 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== | |
// @id iitc-plugin-flag-comm-as-spam | |
// @name IITC plugin: flag comm as spam | |
// @category Misc | |
// @version 0.1.0.20160831.120000 | |
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion | |
// @updateURL none | |
// @downloadURL none | |
// @description Flag spamming comm in 3 click. | |
// @include https://www.ingress.com/intel* |
This file contains hidden or 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
/* | |
1. open member list and scroll to end of end. | |
2. exec this snippet in js console. | |
*/ | |
var anc = document.getElementsByClassName("dUF9n"); | |
var result = []; | |
for (var i=0;i<anc.length;i++){ | |
result.push(anc[i].getAttribute("href")); | |
} |