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 nocount on | |
go | |
declare @tblPerson table | |
( | |
[id] int not null | |
identity(1,1) | |
, [name] varchar(200) not null |
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
john smith [email protected] los angeles CA 90001 | |
larry summers [email protected] new york-city NY 10001 | |
twilla jacobs [email protected] cincinnati OH 45201 | |
andy johnson [email protected] miami FL 33101 | |
tanya wilson [email protected] philadephia PA 19019 |
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 |
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
/* | |
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
[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
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
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
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
fn main() | |
{ | |
println!("Hello, world!"); | |
} |