I hereby claim:
- I am Alikrc on github.
- I am ejder (https://keybase.io/ejder) on keybase.
- I have a public key whose fingerprint is 0E93 E913 5257 2ABF 2B28 9620 48C8 5453 4F28 2957
To claim this, I am signing this object:
println "asdsa" |
on terminal run this, then add a new remote config listen port 8000. | |
d: | |
cd D:\NS Projects\NCJenkinsPlugin | |
set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n | |
mvn hpi:run | |
https://wiki.jenkins.io/display/JENKINS/Plugin+tutorial#Plugintutorial-SettingupaproductiveenvironmentwithyourIDE |
forfiles /S /M * /C "cmd /c if @fsize GEQ 1000000000 echo @path" |
var path = @"D:\XXX.resx"; | |
var keyList = new List<string>(); | |
var doc = new XmlDocument(); | |
doc.Load(path); | |
foreach (XmlNode node in doc.DocumentElement.ChildNodes) | |
{ | |
if (node.Name != "data") | |
{ | |
continue; | |
} |
SOURCE: remote | |
Target: Mine | |
https://blogs.endjin.com/2014/06/using-git-for-net-development-part-4-resolving-merge-conflicts/ |
git reset head~ --soft | |
Undo your NOT pushed commit, keep changes |
I hereby claim:
To claim this, I am signing this object:
youtube-dl --extract-audio --audio-format mp3 URLHERE |
.filterbar-refine-further-popup .list-choices-item{ | |
color:inherit; | |
} | |
#mainArea a, | |
#mainArea input, | |
#mainArea td{ | |
font-size:medium; | |
} | |
.event .body, .case .field { | |
font-size: medium |
d: | |
Set-Location D:\MyProjectFolder | |
Get-ChildItem .\ -include bin,obj -Recurse | ForEach-Object ($_) { Remove-Item $_.FullName -Force -Recurse } |