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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <Title>propref</Title> | |
| <Shortcut>propref</Shortcut> | |
| <Description>Code snippet for observable property and backing field</Description> | |
| <Author>Sagar Dahal</Author> | |
| <SnippetTypes> | |
| <SnippetType>Expansion</SnippetType> |
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== | |
| // @name TMS captcah autofill | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author chaosifier | |
| // @match https://*.nepsetms.com.np/login | |
| // @grant none | |
| // ==/UserScript== |
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
| - download qgis from https://qgis.org/en/site/ | |
| - C:\Program Files\QGIS 3.22.6\bin> ogr2ogr -progress -f "MSSQLSpatial" "MSSQL:server=DESKTOP-HE9GCV7;database=Sandbox;uid=sa;pwd=admin" "C:\Users\theUser\Downloads\NepalLocalUnits0_2022_April_29_10_05_55\NepalLocalUnits0\NepalLocalUnits0.shp" -a_srs "EPSG:4326" -lco PRECISION=NO | |
| - in sql server | |
| SELECT * | |
| FROM nepallocalunits0 | |
| WHERE ogr_geometry.STContains( | |
| geometry::STGeomFromText('POINT(87.9909718 26.6401384)', 4326) | |
| ) = 1; |
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
| using System; | |
| using System.Net.Http; | |
| using System.Net.Http.Headers; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Newtonsoft.Json; | |
| namespace Sandbox | |
| { | |
| public static class DahuaCrack |