├── desktop ├── Go │ └── hello │ │ ├── .gitignore │ │ ├── go.mod │ │ ├── hello.go │ │ ├── module.nix │ │ ├── default.nix │ │ └── go.sum ├── Haskell │ ├── answer │ │ ├── .gitignore │ │ ├── module.nix │ │ ├── stack.yaml │ │ ├── answer.cabal │ │ ├── default.nix │ │ └── src │ │ │ └── Main.hs │ └── answer-generated │ │ ├── .gitignore │ │ ├── module.nix │ │ ├── stack.yaml │ │ ├── answer.cabal │ │ ├── default.nix │ │ └── src │ │ └── Main.hs ├── Java │ ├── gs-gradle │ │ ├── .gitignore │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── hello │ │ │ │ ├── Greeter.java │ │ │ │ └── HelloWorld.java │ │ ├── module.nix │ │ ├── shell.nix │ │ └── default.nix │ ├── ant-dateutils │ │ ├── .gitignore │ │ ├── module.nix │ │ ├── shell.nix │ │ ├── default.nix │ │ └── src │ │ │ └── com │ │ │ └── mkyong │ │ │ └── core │ │ │ └── utils │ │ │ └── DateUtils.java │ └── spring-boot │ │ ├── src │ │ ├── main │ │ │ ├── resources │ │ │ │ └── application.properties │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── demo │ │ │ │ └── DemoApplication.java │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── demo │ │ │ └── DemoApplicationTests.java │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── module.nix │ │ ├── default.nix │ │ ├── shell.nix │ │ └── .gitignore ├── PHP │ ├── hello-pdf │ │ ├── .gitignore │ │ ├── module.nix │ │ ├── composer.json │ │ ├── index.php │ │ └── default.nix │ └── laravel-cli │ │ ├── public │ │ ├── favicon.ico │ │ └── robots.txt │ │ ├── resources │ │ ├── sass │ │ │ └── app.scss │ │ └── js │ │ │ └── app.js │ │ ├── bootstrap │ │ └── cache │ │ │ └── .gitignore │ │ ├── storage │ │ ├── logs │ │ │ └── .gitignore │ │ ├── app │ │ │ ├── public │ │ │ │ └── .gitignore │ │ │ └── .gitignore │ │ └── framework │ │ │ ├── sessions │ │ │ └── .gitignore │ │ │ ├── testing │ │ │ └── .gitignore │ │ │ ├── views │ │ │ └── .gitignore │ │ │ ├── cache │ │ │ ├── data │ │ │ │ └── .gitignore │ │ │ └── .gitignore │ │ │ └── .gitignore │ │ ├── database │ │ ├── .gitignore │ │ └── seeds │ │ │ └── DatabaseSeeder.php │ │ ├── .gitattributes │ │ ├── module.nix │ │ ├── .gitignore │ │ ├── tests │ │ ├── TestCase.php │ │ ├── Unit │ │ │ └── ExampleTest.php │ │ ├── Feature │ │ │ └── ExampleTest.php │ │ └── CreatesApplication.php │ │ ├── .styleci.yml │ │ ├── .editorconfig │ │ ├── default.nix │ │ ├── app │ │ ├── Http │ │ │ ├── Middleware │ │ │ │ ├── EncryptCookies.php │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ ├── TrimStrings.php │ │ │ │ ├── TrustProxies.php │ │ │ │ └── Authenticate.php │ │ │ └── Controllers │ │ │ │ └── Controller.php │ │ └── Providers │ │ │ ├── BroadcastServiceProvider.php │ │ │ └── AppServiceProvider.php │ │ └── routes │ │ ├── web.php │ │ └── channels.php ├── C │ └── hello │ │ ├── po │ │ ├── stamp-po │ │ ├── bg.gmo │ │ ├── ca.gmo │ │ ├── da.gmo │ │ ├── da.po │ │ ├── de.gmo │ │ ├── el.gmo │ │ ├── eo.gmo │ │ ├── es.gmo │ │ ├── et.gmo │ │ ├── et.po │ │ ├── eu.gmo │ │ ├── fa.gmo │ │ ├── fi.gmo │ │ ├── fr.gmo │ │ ├── ga.gmo │ │ ├── gl.gmo │ │ ├── he.gmo │ │ ├── he.po │ │ ├── hr.gmo │ │ ├── hu.gmo │ │ ├── id.gmo │ │ ├── it.gmo │ │ ├── it.po │ │ ├── ja.gmo │ │ ├── ja.po │ │ ├── ka.gmo │ │ ├── ko.gmo │ │ ├── lv.gmo │ │ ├── ms.gmo │ │ ├── nb.gmo │ │ ├── nl.gmo │ │ ├── nn.gmo │ │ ├── nn.po │ │ ├── pl.gmo │ │ ├── pt.gmo │ │ ├── pt.po │ │ ├── ro.gmo │ │ ├── ro.po │ │ ├── ru.gmo │ │ ├── sk.gmo │ │ ├── sl.gmo │ │ ├── sr.gmo │ │ ├── sv.gmo │ │ ├── th.gmo │ │ ├── tr.gmo │ │ ├── uk.gmo │ │ ├── vi.gmo │ │ ├── ChangeLog │ │ ├── pt_BR.gmo │ │ ├── zh_CN.gmo │ │ ├── zh_TW.gmo │ │ ├── quot.sed │ │ ├── boldquot.sed │ │ ├── LINGUAS │ │ ├── POTFILES.in │ │ └── remove-potcdate.sin │ │ ├── lib │ │ ├── close-stream.h │ │ ├── unistd.c │ │ ├── local.mk │ │ ├── wctype-h.c │ │ └── memchr.valgrind │ │ ├── THANKS │ │ ├── ChangeLog.O │ │ ├── TODO │ │ ├── contrib │ │ ├── evolution.txt │ │ └── de_franconian_po.txt │ │ ├── doc │ │ ├── stamp-vti │ │ └── version.texi │ │ ├── module.nix │ │ ├── man │ │ └── hello.x │ │ ├── shell.nix │ │ ├── m4 │ │ ├── xalloc.m4 │ │ ├── quotearg.m4 │ │ ├── msvc-nothrow.m4 │ │ ├── close-stream.m4 │ │ ├── closeout.m4 │ │ ├── xstrndup.m4 │ │ └── off_t.m4 │ │ ├── build-aux │ │ └── snippet │ │ │ └── _Noreturn.h │ │ └── default.nix ├── Python │ └── answer │ │ ├── answer │ │ ├── __init__.py │ │ └── __main__.py │ │ ├── module.nix │ │ ├── default.nix │ │ └── setup.py ├── JavaScript │ ├── cowsay │ │ ├── test.js │ │ ├── .gitignore │ │ ├── cows │ │ │ ├── shrug.cow │ │ │ ├── tableflip.cow │ │ │ ├── template.cow │ │ │ ├── cthulhu-mini.cow │ │ │ ├── bunny.cow │ │ │ ├── owl.cow │ │ │ ├── shikato.cow │ │ │ ├── zen-noh-milk.cow │ │ │ ├── default.cow │ │ │ ├── hedgehog.cow │ │ │ ├── hellokitty.cow │ │ │ ├── lollerskates.cow │ │ │ ├── wood.cow │ │ │ ├── koala.cow │ │ │ ├── mailchimp.cow │ │ │ ├── bill-the-cat.cow │ │ │ ├── ebi_furai.cow │ │ │ ├── minotaur.cow │ │ │ ├── small.cow │ │ │ ├── moose.cow │ │ │ ├── roflcopter.cow │ │ │ ├── mutilated.cow │ │ │ ├── satanic.cow │ │ │ ├── banana.cow │ │ │ ├── pawn.cow │ │ │ ├── robot.cow │ │ │ ├── kilroy.cow │ │ │ ├── tortoise.cow │ │ │ ├── rook.cow │ │ │ ├── dolphin.cow │ │ │ ├── hiyoko.cow │ │ │ ├── kitten.cow │ │ │ ├── www.cow │ │ │ ├── tux.cow │ │ │ ├── world.cow │ │ │ ├── bishop.cow │ │ │ ├── goat2.cow │ │ │ ├── knight.cow │ │ │ ├── sheep.cow │ │ │ ├── vader-koala.cow │ │ │ ├── cower.cow │ │ │ ├── fat-cow.cow │ │ │ ├── luke-koala.cow │ │ │ ├── moofasa.cow │ │ │ ├── ymd_udon.cow │ │ │ ├── fat-banana.cow │ │ │ ├── yasuna_16.cow │ │ │ ├── robotfindskitten.cow │ │ │ ├── elephant2.cow │ │ │ ├── supermilker.cow │ │ │ ├── clippy.cow │ │ │ ├── queen.cow │ │ │ ├── sachiko.cow │ │ │ ├── squirrel.cow │ │ │ ├── goat.cow │ │ │ ├── vader.cow │ │ │ ├── kitty.cow │ │ │ ├── bong.cow │ │ │ ├── ren.cow │ │ │ ├── elephant.cow │ │ │ ├── fox.cow │ │ │ ├── bud-frogs.cow │ │ │ ├── elephant-in-snake.cow │ │ │ ├── king.cow │ │ │ ├── seahorse.cow │ │ │ ├── C3PO.cow │ │ │ ├── charlie.cow │ │ │ ├── whale.cow │ │ │ ├── telebears.cow │ │ │ ├── iwashi.cow │ │ │ ├── docker-whale.cow │ │ │ ├── lamb.cow │ │ │ ├── armadillo.cow │ │ │ ├── yasuna_12.cow │ │ │ ├── dalek.cow │ │ │ ├── stimpy.cow │ │ │ ├── yasuna_10.cow │ │ │ ├── cowfee.cow │ │ │ ├── ibm.cow │ │ │ ├── yasuna_13.cow │ │ │ ├── cat2.cow │ │ │ ├── bearface.cow │ │ │ ├── jellyfish.cow │ │ │ ├── kosh.cow │ │ │ ├── taxi.cow │ │ │ ├── happy-whale.cow │ │ │ ├── skeleton.cow │ │ │ ├── yasuna_09.cow │ │ │ ├── threader.cow │ │ │ ├── R2-D2.cow │ │ │ ├── ghost.cow │ │ │ ├── spidercow.cow │ │ │ ├── meow.cow │ │ │ ├── milk.cow │ │ │ ├── fence.cow │ │ │ ├── flaming-sheep.cow │ │ │ ├── lamb2.cow │ │ │ ├── sudowoodo.cow │ │ │ ├── chito.cow │ │ │ ├── cheese.cow │ │ │ └── claw-arm.cow │ │ ├── .travis.yml │ │ ├── module.nix │ │ ├── shell.nix │ │ ├── default.nix │ │ ├── sample.html │ │ ├── test │ │ │ └── faces.js │ │ └── rollup.config.js │ └── cowsay-fod │ │ ├── test.js │ │ ├── .gitignore │ │ ├── cows │ │ ├── shrug.cow │ │ ├── tableflip.cow │ │ ├── template.cow │ │ ├── cthulhu-mini.cow │ │ ├── bunny.cow │ │ ├── owl.cow │ │ ├── shikato.cow │ │ ├── zen-noh-milk.cow │ │ ├── default.cow │ │ ├── hedgehog.cow │ │ ├── lollerskates.cow │ │ ├── hellokitty.cow │ │ ├── koala.cow │ │ ├── wood.cow │ │ ├── mailchimp.cow │ │ ├── minotaur.cow │ │ ├── bill-the-cat.cow │ │ ├── ebi_furai.cow │ │ ├── moose.cow │ │ ├── small.cow │ │ ├── roflcopter.cow │ │ ├── satanic.cow │ │ ├── mutilated.cow │ │ ├── banana.cow │ │ ├── pawn.cow │ │ ├── robot.cow │ │ ├── kilroy.cow │ │ ├── tortoise.cow │ │ ├── hiyoko.cow │ │ ├── kitten.cow │ │ ├── rook.cow │ │ ├── dolphin.cow │ │ ├── www.cow │ │ ├── tux.cow │ │ ├── world.cow │ │ ├── bishop.cow │ │ ├── cower.cow │ │ ├── goat2.cow │ │ ├── knight.cow │ │ ├── sheep.cow │ │ ├── vader-koala.cow │ │ ├── fat-cow.cow │ │ ├── luke-koala.cow │ │ ├── moofasa.cow │ │ ├── ymd_udon.cow │ │ ├── fat-banana.cow │ │ ├── yasuna_16.cow │ │ ├── robotfindskitten.cow │ │ ├── elephant2.cow │ │ ├── supermilker.cow │ │ ├── clippy.cow │ │ ├── queen.cow │ │ ├── sachiko.cow │ │ ├── squirrel.cow │ │ ├── goat.cow │ │ ├── vader.cow │ │ ├── kitty.cow │ │ ├── bong.cow │ │ ├── elephant.cow │ │ ├── ren.cow │ │ ├── fox.cow │ │ ├── bud-frogs.cow │ │ ├── elephant-in-snake.cow │ │ ├── king.cow │ │ ├── seahorse.cow │ │ ├── C3PO.cow │ │ ├── charlie.cow │ │ ├── whale.cow │ │ ├── telebears.cow │ │ ├── iwashi.cow │ │ ├── docker-whale.cow │ │ ├── lamb.cow │ │ ├── armadillo.cow │ │ ├── yasuna_12.cow │ │ ├── dalek.cow │ │ ├── stimpy.cow │ │ ├── yasuna_10.cow │ │ ├── cowfee.cow │ │ ├── ibm.cow │ │ ├── yasuna_13.cow │ │ ├── cat2.cow │ │ ├── bearface.cow │ │ ├── jellyfish.cow │ │ ├── kosh.cow │ │ ├── taxi.cow │ │ ├── happy-whale.cow │ │ ├── skeleton.cow │ │ ├── yasuna_09.cow │ │ ├── threader.cow │ │ ├── R2-D2.cow │ │ ├── ghost.cow │ │ ├── spidercow.cow │ │ ├── meow.cow │ │ ├── milk.cow │ │ ├── fence.cow │ │ ├── flaming-sheep.cow │ │ ├── lamb2.cow │ │ ├── sudowoodo.cow │ │ └── chito.cow │ │ ├── .travis.yml │ │ ├── module.nix │ │ ├── default.nix │ │ ├── sample.html │ │ ├── test │ │ └── faces.js │ │ └── rollup.config.js └── TeX │ └── sample-doc │ ├── .gitignore │ ├── bibliography.bib │ ├── shell.nix │ └── default.nix ├── web ├── FastAPI │ └── fastapi │ │ ├── .gitignore │ │ ├── app │ │ ├── __init__.py │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ └── run.py │ │ └── main.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── test_api.py │ │ └── conftest.py │ │ ├── default.nix │ │ ├── cd.nix │ │ ├── pyproject.toml │ │ └── cd-nixos.nix └── Laravel │ └── laravel │ ├── public │ ├── css │ │ └── app.css │ ├── favicon.ico │ ├── robots.txt │ └── mix-manifest.json │ ├── resources │ ├── sass │ │ └── app.scss │ └── js │ │ └── app.js │ ├── bootstrap │ └── cache │ │ └── .gitignore │ ├── storage │ ├── logs │ │ └── .gitignore │ ├── app │ │ ├── public │ │ │ └── .gitignore │ │ └── .gitignore │ └── framework │ │ ├── testing │ │ └── .gitignore │ │ ├── views │ │ └── .gitignore │ │ ├── cache │ │ ├── data │ │ │ └── .gitignore │ │ └── .gitignore │ │ ├── sessions │ │ └── .gitignore │ │ └── .gitignore │ ├── database │ ├── .gitignore │ └── seeds │ │ └── DatabaseSeeder.php │ ├── .gitattributes │ ├── tests │ ├── TestCase.php │ ├── Unit │ │ └── ExampleTest.php │ ├── Feature │ │ └── ExampleTest.php │ └── CreatesApplication.php │ ├── .gitignore │ ├── .styleci.yml │ ├── .editorconfig │ ├── app │ ├── Http │ │ ├── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ ├── Authenticate.php │ │ │ └── VerifyCsrfToken.php │ │ └── Controllers │ │ │ └── Controller.php │ ├── Foundation │ │ └── Application.php │ └── Providers │ │ ├── BroadcastServiceProvider.php │ │ └── AppServiceProvider.php │ ├── default.nix │ └── routes │ ├── web.php │ └── channels.php ├── mobile └── Android │ ├── cardview │ ├── .gitignore │ ├── settings.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── Application │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── tile.9.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ ├── build.gradle │ ├── .google │ │ └── packaging.yaml │ └── default.nix │ └── myfirstapp │ ├── keystore │ ├── .gitignore │ ├── ic_launcher-web.png │ ├── res │ ├── values │ │ ├── styles.xml │ │ └── strings.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ └── ic_action_search.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ └── ic_action_search.png │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_action_search.png │ └── menu │ │ ├── activity_main.xml │ │ └── activity_display_message.xml │ ├── README.txt │ ├── shell.nix │ └── default.nix ├── AUTHORS ├── multitier └── Python │ └── helloanswer │ ├── client │ ├── client │ │ ├── __init__.py │ │ └── client.py │ ├── nixpkgs.nix │ └── default.nix │ ├── server │ ├── server │ │ ├── __init__.py │ │ ├── presentation │ │ │ ├── __init__.py │ │ │ ├── answer.py │ │ │ └── hello.py │ │ ├── domain │ │ │ ├── hello_repository.py │ │ │ ├── __init__.py │ │ │ ├── answer.py │ │ │ └── answer_repository.py │ │ ├── application │ │ │ ├── __init__.py │ │ │ ├── hello_service.py │ │ │ └── answer_service.py │ │ └── server.py │ ├── nixpkgs.nix │ └── default.nix │ ├── hellolib │ ├── hellolib │ │ ├── __init__.py │ │ └── hellolib.py │ ├── nixpkgs.nix │ ├── setup.py │ └── default.nix │ └── answerlib │ ├── answerlib │ ├── __init__.py │ └── answerlib.py │ ├── nixpkgs.nix │ ├── default.nix │ └── setup.py ├── template ├── .travis.yml ├── .gitlab-ci.yml ├── default.nix ├── .circleci │ └── config-docker.yml └── .github │ └── workflows │ └── main.yml ├── .editorconfig ├── .github └── workflows │ └── main.yml ├── distributed └── Spark │ └── pi │ ├── default.nix │ ├── shell.nix │ └── .gitignore └── .gitattributes /desktop/Go/hello/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/Haskell/answer/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/Java/gs-gradle/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/PHP/hello-pdf/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/FastAPI/fastapi/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/Java/ant-dateutils/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobile/Android/cardview/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobile/Android/myfirstapp/keystore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/FastAPI/fastapi/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/FastAPI/fastapi/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/Laravel/laravel/public/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/Laravel/laravel/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/C/hello/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /desktop/Haskell/answer-generated/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/Python/answer/answer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/FastAPI/fastapi/app/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Tomáš Vlk 2 | 3 | -------------------------------------------------------------------------------- /mobile/Android/myfirstapp/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | gen 3 | -------------------------------------------------------------------------------- /web/Laravel/laravel/resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /multitier/Python/helloanswer/client/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multitier/Python/helloanswer/server/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobile/Android/cardview/settings.gradle: -------------------------------------------------------------------------------- 1 | include 'Application' 2 | -------------------------------------------------------------------------------- /web/Laravel/laravel/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/Laravel/laravel/resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /web/Laravel/laravel/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /desktop/Java/spring-boot/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/Laravel/laravel/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /web/Laravel/laravel/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /web/Laravel/laravel/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/Laravel/laravel/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /web/Laravel/laravel/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/Laravel/laravel/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/Laravel/laravel/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/Laravel/laravel/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /desktop/JavaScript/cowsay/test.js: -------------------------------------------------------------------------------- 1 | require("nodeunit").reporters.default.run(['test']); -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /multitier/Python/helloanswer/hellolib/hellolib/__init__.py: -------------------------------------------------------------------------------- 1 | from .hellolib import * 2 | -------------------------------------------------------------------------------- /web/Laravel/laravel/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /desktop/Go/hello/go.mod: -------------------------------------------------------------------------------- 1 | module main 2 | 3 | go 1.13 4 | 5 | require rsc.io/quote v1.5.2 6 | -------------------------------------------------------------------------------- /desktop/JavaScript/cowsay-fod/test.js: -------------------------------------------------------------------------------- 1 | require("nodeunit").reporters.default.run(['test']); -------------------------------------------------------------------------------- /desktop/PHP/laravel-cli/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /multitier/Python/helloanswer/answerlib/answerlib/__init__.py: -------------------------------------------------------------------------------- 1 | from .answerlib import * 2 | -------------------------------------------------------------------------------- /desktop/C/hello/lib/close-stream.h: -------------------------------------------------------------------------------- 1 | #include 2 | int close_stream (FILE *stream); 3 | -------------------------------------------------------------------------------- /desktop/C/hello/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlktomas/nix-examples/HEAD/desktop/C/hello/THANKS -------------------------------------------------------------------------------- /desktop/JavaScript/cowsay/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .* 3 | !.gitignore 4 | !.travis.yml 5 | build 6 | -------------------------------------------------------------------------------- /desktop/JavaScript/cowsay/cows/shrug.cow: -------------------------------------------------------------------------------- 1 | $the_cow = < 2 | #define _GL_UNISTD_INLINE _GL_EXTERN_INLINE 3 | #include "unistd.h" 4 | -------------------------------------------------------------------------------- /desktop/C/hello/contrib/evolution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlktomas/nix-examples/HEAD/desktop/C/hello/contrib/evolution.txt -------------------------------------------------------------------------------- /web/Laravel/laravel/public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /desktop/C/hello/doc/stamp-vti: -------------------------------------------------------------------------------- 1 | @set UPDATED 19 July 2014 2 | @set UPDATED-MONTH July 2014 3 | @set EDITION 2.10 4 | @set VERSION 2.10 5 | -------------------------------------------------------------------------------- /web/FastAPI/fastapi/app/scripts/run.py: -------------------------------------------------------------------------------- 1 | import uvicorn 2 | 3 | 4 | def dev(): 5 | uvicorn.run("app.main:app", reload=True) 6 | 7 | -------------------------------------------------------------------------------- /desktop/C/hello/doc/version.texi: -------------------------------------------------------------------------------- 1 | @set UPDATED 19 July 2014 2 | @set UPDATED-MONTH July 2014 3 | @set EDITION 2.10 4 | @set VERSION 2.10 5 | -------------------------------------------------------------------------------- /desktop/C/hello/contrib/de_franconian_po.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlktomas/nix-examples/HEAD/desktop/C/hello/contrib/de_franconian_po.txt -------------------------------------------------------------------------------- /mobile/Android/myfirstapp/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlktomas/nix-examples/HEAD/mobile/Android/myfirstapp/ic_launcher-web.png -------------------------------------------------------------------------------- /mobile/Android/myfirstapp/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |