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
@REM Build script to compile Netcat on WIN32 using MinGW | |
@REM | |
@REM Rodney Beede (http://www.rodneybeede.com) | |
@REM | |
@REM 2009-09-02 | |
@REM | |
@REM Tested with gcc 3.4.5 and MinGW version 5.1.4 | |
setlocal |
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 | |
setlocal | |
set "_appData=%APPDATA%" | |
set "_appDataLocal=%LOCALAPPDATA%" | |
set "_googleChromeCodeCacheJS=%_appDataLocal%\Google\Chrome\User Data\Default\Code Cache\js" | |
dir "%_googleChromeCodeCacheJS%" | findstr "bytes" | findstr "File" |
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
fn main() | |
{ | |
println!("Hello, world!"); | |
} |
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
public class helloWorld | |
{ | |
public static void main(String[] args) | |
{ | |
// Prints "Hello, World" to the terminal window. | |
System.out.println("Hello, World"); | |
} | |
} |
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
setlocal | |
set "jar_log4j_version=2.17.1" | |
set "jar_log4j_explicit=lib/log4j/*" | |
set "jar_log4j_implicit=lib/log4j/log4j-api-%jar_log4j_version%.jar;lib/log4j/log4j-core-%jar_log4j_version%.jar;lib/log4j/log4j-1.2-api-%jar_log4j_version%.jar" | |
set "jar_log4j=%jar_log4j_implicit%" | |
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
rem Adding Comments | |
rem https://www.nobody.com/?a=1 | |
IF %ERRORLEVEL% NEQ 0 Echo errorlevel is %ERRORLEVEL% |
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
[string] $title; | |
[char] $ch; | |
[int] $len=0; | |
[string] $filler = ""; | |
[boolean] $bCallFunctionWithComma = $false; | |
function repeatChar([char] $ch,[int] $n) | |
{ | |
[String] $str = ""; |
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
/* | |
Function:- repeatChar | |
*/ | |
function repeatChar(ch, count) | |
{ | |
/* | |
Declare buffer as an array | |
*/ | |
var buffer = []; | |
var str = ""; |
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
Set-StrictMode -Version Latest | |
<# | |
Declare Person Object | |
#> | |
class person | |
{ | |
[string] $name; |
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.IO; | |
using System; | |
using System.Linq; | |
class Program | |
{ | |
enum enumConversionChoice | |
{ | |
convertToStringArray |
OlderNewer