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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Kendo UI Snippet</title> | |
| <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2017.1.118/styles/kendo.common.min.css"> | |
| <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2017.1.118/styles/kendo.rtl.min.css"> | |
| <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2017.1.118/styles/kendo.default.min.css"> | |
| <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.3.1316/styles/kendo.dataviz.min.css"> |
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
| <style type='text/css'> | |
| #loading { | |
| background: #ffffff; | |
| position:absolute; width:100%; height:24; | |
| top:0; bottom:0; left:0; right:0; margin:auto; | |
| z-index: 999999999; | |
| } | |
| </style> | |
| <div id='loading'> |
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
| <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet"> | |
| <div id="tree"></div> | |
| <style> | |
| .fa.k-sprite, | |
| .fa.k-sprite::before { | |
| font-size: 12px; | |
| line-height: 12px; | |
| vertical-align: middle; | |
| } |
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
| <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission> | |
| <uses-permission android:name="android.permission.INTERNET"></uses-permission> |
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
| @echo off | |
| echo Clean SPx and upgrade cache... | |
| DISM.exe /online /Cleanup-Image /StartComponentCleanup | |
| DISM.exe /online /Cleanup-Image /SPSuperseded | |
| DISM.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase | |
| echo Run Glary Utilities... | |
| :CheckOS | |
| IF EXIST "%PROGRAMFILES(X86)%" (GOTO 64BIT) ELSE (GOTO 32BIT) |
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
| import simplejson | |
| import urllib | |
| import urllib2 | |
| url = "https://www.virustotal.com/vtapi/v2/file/report" | |
| parameters = {"resource": "bebe9e7d7c6272f423af69efc04d17e2,4f5e7847a12a0c97308e31cdf384c727,....multi-hash", "apikey": "--put your key here---"} | |
| data = urllib.urlencode(parameters) | |
| req = urllib2.Request(url, data) | |
| response = urllib2.urlopen(req) | |
| json = response.read() | |
| print json |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| <script> | |
| $(function() { | |
| var availableTags = [ | |
| "ActionScript", | |
| "AppleScript", | |
| "Asp", | |
| "BASIC", | |
| "C", | |
| "C++", | |
| "Clojure", |