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
a = (1..16).to_a | |
a.each {|i| i % 4 == 0 ? (puts i) : (print i, ", ")} |
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
[core] | |
autocrlf = True | |
# whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = ~/.gitignore | |
# https://help.github.com/en/articles/associating-text-editors-with-git | |
editor = 'C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin | |
[color] | |
ui = auto |
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
IF NOT EXIST Content MKDIR Content |
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
IF "%1" == "" (SET Configuration=Debug) ELSE (SET Configuration=%1) | |
ECHO Configuration=%Configuration% |
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 Rekursiv alle Ordnerinhalte unterhalb des Content-Ordner loeschen? | |
SET /P X= (J)a oder (N)ein? | |
IF /I "%X%"=="J" GOTO :LabelDelete | |
GOTO :LabelCollect | |
:LabelDelete | |
ECHO OFF | |
DEL /S /Q *.*>NUL | |
ECHO Dateien geloescht. | |
GOTO :LabelCollect |
NewerOlder