Skip to content

Instantly share code, notes, and snippets.

Manifest-Version: 1.0
Codebase: *
Permissions: all-permissions
Application-Library-Allowable-Codebase: *
Caller-Allowable-Codebase: *
Application-Name: TestApp
@netmaxt3r
netmaxt3r / videomani-adblock.js
Last active December 11, 2016 15:30
vidomani ad unblock
// ==UserScript==
// @name VideoMani
// @namespace http://tampermonkey.net/
// @version 1.0
// @description fix blank screen on viyomani when ad blocker is enabled
// @author Nizam Moidu
// @include http*://*.vidyomani.com/*
// @grant none
// ==/UserScript==
// ==OpenUserJS==
@netmaxt3r
netmaxt3r / ProtocolTreeNode.java
Created October 29, 2013 18:16
positive thinking
//positive thinking
public ProtocolTreeNode getChild(String tag){
if(children!=null && children.size()!=0){
for(ProtocolTreeNode iChild : children){
if(tag.equalsIgnoreCase(iChild.getTag())) return iChild;
}
}
return null;
}
//negative thinking