- GET Requests
- POST/PUT Requests
This file contains 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
METHOD 1 | |
----------------------------------------------------------------------------- | |
Delete contents of these 2 folders | |
C:\Users\%USERNAME%\AppData\Roaming\Microsoft\VisualStudio\ | |
C:\Users\%USERNAME%\AppData\Local\Microsoft\VisualStudio\14.0\ComponentModelCache | |
Then run the VS.NET as admin, otherwise it won't be able to renew the Roaming folder correctly. |
This file contains 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
if((Get-WebConfiguration -Filter /system.webServer/isapiFilters/filter | | |
Where-Object -Property path -EQ $isapiDllPath) ` | |
-eq $null) { | |
Add-WebConfiguration -Filter /system.webServer/isapiFilters ` | |
-Value @{ | |
name = $isapiName; | |
path = $isapiDllPath; | |
preCondition = $preConditionIfAny | |
} ` |
This file contains 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
emulator -avd AndroidEmulator -partition-size 1024 -writable-system | |
Install toot certificate from `http://ipv4.fiddler:8888` | |
The certificate will now be located in /data/misc/user/0/cacerts-added/. | |
Remount /system R/W as root if you haven't already (mount -o remount,rw /system). | |
adb shell |
This file contains 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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains 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
Run this: | |
rundll32 dfshim CleanOnlineAppCache | |
Delete everything from: | |
C:\Users\%USERPROFILE%\Local Settings\Apps\2.0 |
This file contains 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.Diagnostics; | |
using System.Data; | |
using System.Collections; | |
using Microsoft.VisualBasic; | |
using System.Collections.Generic; | |
using System; | |
using System.Net; | |
using System.IO; | |
using System.Text.RegularExpressions; |
This file contains 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.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.IO; | |
using System.Net; | |
using System.Text.RegularExpressions; | |
namespace SystemEx | |
{ | |
This file contains 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.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net; | |
using System.Text; | |
using System.Threading.Tasks; | |
public class FtpClient |
#Node - File Paths
##File Paths Node has a path module which can be used to manipulate paths.
###Normalizing Paths Paths can be stored in different ways and it is neccessary to ensure that the path is standardized.
var path = require('path');
path.normalize('/foo/bar//baz/asdf/quux/..');
NewerOlder