😄
😆
😊
😃
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| from subprocess import call | |
| for i in range(0,50): | |
| call(["say", str(i)]) |
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
| // First add the option in the Rules menu: | |
| // Add these lines after the other options (m_Japanese ...) | |
| // Enables hiding of VS2013 BrowserLink feature requests | |
| public static RulesOption("Hide SignalR/BrowserLink") | |
| var m_SignalRBrowserLink: boolean = false; | |
| // Add the following at the end of OnBeforeRequest | |
| if (m_SignalRBrowserLink && (oSession.uriContains("SignalR") || oSession.uriContains("__BrowserLink") || oSession.oRequest.headers.RequestPath.EndsWith("/browserLink"))){ | |
| oSession["ui-hide"] = "SignalR"; | |
| } |
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
| ''' | |
| NOTES: | |
| - See the ArcGIS REST API documentation for supported operations, methods, and syntax: | |
| http://resources.arcgis.com/en/help/arcgis-rest-api/ | |
| - A TOKEN must be passed as parameter in addition to any required inputs for the operation. | |
| - "urllib.urlencode" handles spaces and other special characters in parameters so that valid URLs are constructed. | |
| - "urllib.urlopen" sends the reqest and handles the response. | |
| - Parameters are appended to URL for GET (see Example 1), but passed to "urlopen" for POST (see Example 2). API docs specifiy supported methods for each operation. | |
| - "json.loads" converts string responses to parseable JSON objects. |
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
| /******************************************************** | |
| COPYRIGHTS http://www.ranjithk.com | |
| *********************************************************/ | |
| CREATE PROCEDURE CleanUpSchema | |
| ( | |
| @SchemaName varchar(100) | |
| ,@WorkTest char(1) = 'w' -- use 'w' to work and 't' to print | |
| ) | |
| AS | |
| /*----------------------------------------------------------------------------------------- |
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 master | |
| GO | |
| IF OBJECT_ID ('sp_hexadecimal') IS NOT NULL | |
| DROP PROCEDURE sp_hexadecimal | |
| GO | |
| CREATE PROCEDURE sp_hexadecimal | |
| @binvalue varbinary(256), | |
| @hexvalue varchar (514) OUTPUT | |
| AS | |
| DECLARE @charvalue varchar (514) |
NewerOlder