├── Odin-lang ├── books.md ├── courses.md ├── resources.md ├── examples │ └── hello.odin ├── info.json └── README.md ├── Ada ├── examples │ └── .gitkeep ├── books.md ├── resources.md ├── courses.md ├── Examples │ └── helloworld.adb └── info.json ├── D ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Dlang.d └── info.json ├── Elm ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Elm.elm └── info.json ├── LaTeX ├── examples │ ├── .gitkeep │ └── hello.tex ├── books.md ├── resources.md ├── courses.md ├── info.json └── README.md ├── Lua ├── README.md ├── books.md ├── examples │ └── Lua.lua ├── resources.md ├── courses.md └── info.json ├── Nim ├── README.md ├── books.md ├── examples │ └── Nim.nim ├── resources.md ├── courses.md └── info.json ├── Opa ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Opa.opa └── info.json ├── R ├── README.md ├── books.md ├── examples │ └── R.R ├── resources.md ├── courses.md └── info.json ├── Red ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── main.red └── info.json ├── SQL ├── README.md ├── books.md ├── examples │ └── SQL.sql ├── resources.md ├── courses.md └── info.json ├── Shakespeare ├── books.md ├── courses.md ├── resources.md └── info.json ├── Tcl ├── README.md ├── books.md ├── examples │ └── hello.tcl ├── resources.md ├── courses.md └── info.json ├── YO ├── examples │ └── .gitkeep ├── books.md ├── resources.md ├── courses.md ├── target │ └── release │ │ └── YO.exe ├── labra.yoda ├── src │ └── main.yo └── README.md ├── Yacas ├── examples │ ├── .gitkeep │ └── hello-world.yts ├── books.md ├── resources.md ├── courses.md └── info.json ├── Hack ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Hack.hh └── info.json ├── Haxe ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── HelloWorld.hx └── info.json ├── Html ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── HTML.html └── info.json ├── Julia ├── README.md ├── examples │ └── julia.jl ├── resources.md ├── courses.md ├── info.json └── books.md ├── Kotlin ├── examples │ ├── .gitkeep │ └── Kotlin.kt ├── courses.md ├── resources.md ├── info.json ├── books.md └── README.md ├── Lisp ├── README.md ├── books.md ├── examples │ └── Lispfile.e ├── resources.md ├── courses.md └── info.json ├── MIPS ├── README.md ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── hello.s ├── OCaml ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello.ml └── info.json ├── Perl ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── perl.pl └── info.json ├── Plus ├── README.md ├── books.md ├── resources.md ├── courses.md └── info.json ├── QBasic ├── examples │ └── .gitkeep ├── hello.bas ├── books.md ├── resources.md ├── courses.md └── info.json ├── Ruby ├── README.md ├── books.md ├── examples │ ├── ruby.rb │ ├── 09-strings.rb │ ├── 11-hash.rb │ ├── 13-iterators.rb │ ├── 05-operators.rb │ ├── 10-arrays-2.rb │ ├── 08-method.rb │ ├── 02-begin-end.rb │ └── 04-arrays.rb ├── resources.md ├── courses.md └── info.json ├── Scss ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Scss.scss └── info.json ├── Swift ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── swift.swift └── info.json ├── VBScript ├── examples │ └── .gitkeep ├── books.md ├── example │ └── VBScript.vbs ├── resources.md ├── courses.md └── info.json ├── ABC ├── courses.md ├── examples │ └── ABC.abc ├── books.md ├── resources.md └── info.json ├── Docker ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ ├── Dockerfile │ └── official.sh └── info.json ├── Eiffel ├── README.md ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── Eiffelfile.e ├── Elixir ├── README.md ├── books.md ├── examples │ └── elixir.ex ├── resources.md ├── courses.md └── info.json ├── Erlang ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Erlang.erl └── info.json ├── Flutter ├── README.md ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── main.dart ├── Fortran ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Fortran.F └── info.json ├── Fsharp ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Fsharp.fs └── info.json ├── Go-Gin ├── README.md ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── gin.go ├── Groovy ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ ├── hello_world.groovy │ └── HelloWorld.groovy └── info.json ├── Hashemi ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Hello_World.hashem └── info.json ├── Haskell ├── README.md ├── books.md ├── examples │ └── hello.hs ├── resources.md ├── courses.md └── info.json ├── Jython ├── README.md ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── Jython.jy ├── Makefile ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ ├── hellomake.h │ ├── makefile │ ├── hellomake.c │ └── hellofunc.c └── info.json ├── Matlab ├── README.md ├── books.md ├── examples │ └── HelloWorld.m ├── resources.md ├── courses.md └── info.json ├── Neko-VM ├── README.md ├── books.md ├── examples │ └── Neko.n ├── resources.md ├── courses.md └── info.json ├── Octave ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello └── info.json ├── Pascal ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Pascal.pas └── info.json ├── Prolog ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello.pl └── info.json ├── Scheme ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── main.scm └── info.json ├── Scratch ├── README.md ├── books.md ├── examples │ └── SCRATCH.sb ├── resources.md ├── courses.md └── info.json ├── Solidity ├── .gitignore ├── README.md ├── examples │ ├── .gitignore │ └── Solidity.sol ├── books.md ├── resources.md ├── courses.md └── info.json ├── B ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello.b └── info.json ├── C ├── books.md ├── resources.md ├── courses.md ├── examples │ └── cLang.c └── info.json ├── Deno ├── books.md ├── resources.md ├── courses.md ├── info.json ├── examples │ └── helloworld.js └── README.md ├── Mql4 ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello.mq4 └── info.json ├── Mql5 ├── books.md ├── courses.md ├── resources.md ├── examples │ └── hello.mq5 └── info.json ├── PowerShell ├── README.md ├── books.md ├── examples │ └── powershell.ps1 ├── resources.md ├── courses.md └── info.json ├── Typescript ├── README.md ├── books.md ├── examples │ ├── typescript.ts │ └── Express.ts ├── resources.md ├── courses.md └── info.json ├── V ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello.v └── info.json ├── VB ├── books.md ├── resources.md ├── courses.md ├── examples │ └── main.vb ├── info.json └── README.md ├── Vim-Script ├── README.md ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── vim.vim ├── قلب ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello.alb ├── info.json └── README.md ├── Algol ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Algol.alg └── info.json ├── Bash ├── books.md ├── resources.md ├── courses.md ├── examples │ └── bash.sh ├── info.json └── README.md ├── Basic ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Basic.bas ├── info.json └── README.md ├── Batch ├── books.md ├── resources.md ├── courses.md ├── examples │ └── batch.bat ├── info.json └── README.md ├── COBOL ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── main.cbl ├── Cobra ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Cobra.cobra ├── info.json └── README.md ├── Cow ├── books.md ├── resources.md ├── courses.md └── info.json ├── Css ├── books.md ├── resources.md ├── courses.md ├── examples │ └── CSS.css └── info.json ├── Curl ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Curl.CURL └── info.json ├── Dart ├── books.md ├── resources.md ├── courses.md ├── examples │ ├── 0-hello-world.dart │ ├── .gitattributes │ └── cheatsheets │ │ ├── 01-print.dart │ │ ├── 10-operators-4.dart │ │ ├── 23-std-1.dart │ │ ├── 14-variables-2.dart │ │ ├── 04-strings-2.dart │ │ ├── 25-enum-2.dart │ │ ├── 24-random.dart │ │ ├── 09-operators-3.dart │ │ ├── 15-variables-3.dart │ │ ├── 13-comments.dart │ │ ├── 31-map-1.dart │ │ ├── 19-loop-2.dart │ │ ├── 20-loop-3.dart │ │ ├── 07-operators-1.dart │ │ ├── 16-variables-4.dart │ │ ├── 12-operators-6.dart │ │ ├── 18-loop-1.dart │ │ ├── 11-operators-5.dart │ │ ├── 21-condition-2.dart │ │ ├── 05-strings-3.dart │ │ ├── 17-condition-1.dart │ │ ├── 30-set-2.dart │ │ ├── 26-lists-1.dart │ │ ├── 29-set-1.dart │ │ ├── 34-collections-operators-2.dart │ │ ├── 08-operators-2.dart │ │ ├── 35-collections-operators-3.dart │ │ ├── 28-lists-3.dart │ │ ├── 22-enum-1.dart │ │ ├── 33-collections-operators-1.dart │ │ ├── 06-converts.dart │ │ └── 03-strings-1.dart ├── info.json └── README.md ├── Flask ├── books.md ├── resources.md ├── courses.md ├── info.json ├── examples │ └── Flask.py └── README.md ├── Ktor ├── books.md ├── resources.md ├── courses.md ├── info.json ├── examples │ └── Ktor.kt └── README.md ├── Node.js ├── books.md ├── resources.md ├── courses.md ├── examples │ └── helloworld.js └── info.json ├── OBJECTIVE-C ├── README.md ├── books.md ├── resources.md ├── courses.md ├── examples │ └── OBJECT-C.m └── info.json ├── Piet ├── books.md ├── resources.md ├── courses.md ├── examples │ └── styled_helloworld.png ├── info.json └── README.md ├── Vala ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Vala.vala └── info.json ├── Awk ├── resources.md ├── courses.md ├── examples │ └── helloworld.awk ├── info.json └── books.md ├── Befunge ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello.bf ├── info.json └── README.md ├── Binary ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── Binary.bin ├── Blender ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── Blender.py ├── Carbon ├── books.md ├── courses.md ├── info.json └── examples │ └── Fibonacci.Carbon ├── Clipper ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello_world.prg ├── info.json └── README.md ├── Clojure ├── books.md ├── resources.md ├── courses.md ├── examples │ └── ClojureLang.clj └── info.json ├── Cpp ├── resources.md ├── courses.md ├── info.json ├── books.md └── examples │ └── Cplusplus.cpp ├── Crystal ├── books.md ├── examples │ └── helloworld.cr ├── resources.md ├── courses.md ├── info.json └── README.md ├── Django ├── books.md ├── resources.md ├── courses.md ├── info.json ├── examples │ └── Django.py └── README.md ├── Fastapi ├── books.md ├── resources.md ├── info.json ├── examples │ └── Fastapi.py ├── courses.md └── README.md ├── Hascal ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Hascal.has ├── info.json └── README.md ├── Jquery ├── books.md ├── resources.md ├── examples │ └── Hello-world.js ├── courses.md └── info.json ├── LOLCODE ├── books.md ├── resources.md ├── courses.md ├── examples │ └── HelloWorld.lol ├── info.json └── README.md ├── Pashmak ├── books.md ├── resources.md ├── courses.md ├── examples │ ├── hello.pashm │ ├── ask_name.pashm │ ├── get_password.pashm │ ├── array.pashm │ ├── loop.pashm │ ├── fib.pashm │ └── square.pashm ├── README.md └── info.json ├── Pony ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello.pony └── info.json ├── فردوسی ├── books.md ├── examples │ ├── helloworld.fd │ └── if_else.fd ├── resources.md ├── courses.md ├── info.json └── README.md ├── Assembly ├── books.md ├── resources.md ├── courses.md ├── info.json └── examples │ └── x86_assembly.asm ├── Brainfuck ├── books.md ├── resources.md ├── courses.md ├── examples │ └── brainfuck.bf ├── info.json └── README.md ├── Forth ├── examples │ └── Forth.fs ├── courses.md ├── books.md ├── info.json ├── resources.md └── README.md ├── Go ├── courses.md ├── examples │ ├── GoLang.go │ ├── fib.go │ └── io.go ├── info.json └── resources.md ├── JavaScript ├── books.md ├── examples │ └── Javascript.js ├── resources.md ├── courses.md └── info.json ├── Not-English ├── books.md ├── examples │ └── HelloWorld.ext ├── courses.md ├── info.json └── resources.md ├── Qsharp ├── resources.md ├── info.json ├── assets │ └── images │ │ ├── Listing 1.png │ │ ├── Listing 2.png │ │ ├── Listing 3.png │ │ ├── Listing 4.png │ │ ├── Listing5.png │ │ ├── Qsharp language.jpg │ │ ├── Introduction-to-Quantum-Computing-with QSharp-book.png │ │ └── Learn to build your first quantum solution with the Quantum Development Kit and Q#.png ├── books.md └── examples │ └── Operation.qs ├── Rockstar ├── books.md ├── resources.md ├── courses.md ├── README.md ├── info.json └── examples │ └── HelloWorld.rock ├── ShellScript ├── books.md ├── courses.md ├── resources.md ├── examples │ └── helloworld.sh ├── info.json └── README.md ├── Verilog ├── courses.md ├── resources.md ├── info.json ├── examples │ └── Hello_World.v └── books.md ├── Whitespace ├── books.md ├── resources.md ├── courses.md ├── info.json ├── README.md └── examples │ ├── helloworld.ws │ └── Whitespace and C hello world ├── Zig-lang ├── books.md ├── resources.md ├── courses.md ├── README.md ├── info.json └── examples │ └── helloworld.zig ├── Abdal-Autoit ├── books.md ├── resources.md ├── courses.md ├── examples │ └── hello.au3 └── info.json ├── AppleScript ├── books.md ├── examples │ └── AppleScript.scpt ├── resources.md ├── courses.md └── info.json ├── Arduino ├── resources.md ├── courses.md ├── examples │ └── arduino.ino ├── info.json └── books.md ├── CoffeScript ├── books.md ├── resources.md ├── courses.md ├── examples │ └── Coffe.coffe └── info.json ├── Delphi ├── courses.md ├── books.md ├── examples │ └── HelloWorld.dpr ├── info.json └── resources.md ├── Nginx ├── courses.md ├── books.md ├── resources.md ├── info.json └── examples │ └── nginx.conf ├── Small-Basic ├── books.md ├── resources.md ├── courses.md ├── examples │ ├── Hello World!.exe │ ├── Hello World!.pdb │ ├── Hello World!.sb │ └── SmallBasicLibrary.dll ├── info.json └── README.md ├── Angular.js ├── resources.md ├── courses.md ├── examples │ └── Angular.js ├── info.json ├── books.md └── README.md ├── Python ├── examples │ ├── cheatsheets │ │ ├── takeinput.py │ │ ├── for-loop.py │ │ ├── if-else.py │ │ ├── os.py │ │ ├── file.py │ │ ├── variable.py │ │ ├── tkinter.py │ │ ├── recursion.py │ │ └── http_requests.py │ ├── python.py │ └── .gitattributes ├── img │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ └── 7.png ├── info.json ├── resources.md └── README.md ├── Pine-Script ├── courses.md ├── info.json ├── resources.md ├── books.md └── examples │ └── PineScript.pine ├── Rust ├── examples │ └── rust.rs ├── info.json ├── courses.md ├── resources.md └── books.md ├── Php ├── examples │ └── php.php ├── info.json ├── resources.md ├── courses.md ├── README.md └── books.md ├── React ├── info.json ├── examples │ └── index.js ├── resources.md ├── books.md ├── courses.md └── README.md ├── .gitignore ├── React-Native ├── info.json ├── resources.md ├── books.md ├── courses.md ├── examples │ └── index.js └── README.md ├── Csharp ├── info.json ├── resources.md ├── courses.md ├── books.md └── examples │ └── CSharp.cs ├── Java ├── resources.md ├── courses.md ├── info.json ├── examples │ └── Java.java └── README.md └── Scala ├── info.json ├── books.md ├── README.md ├── examples └── Hello.scala ├── resources.md └── courses.md /Odin-lang/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ada/examples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D/README.md: -------------------------------------------------------------------------------- 1 | # D 2 | -------------------------------------------------------------------------------- /Elm/README.md: -------------------------------------------------------------------------------- 1 | # Elm 2 | -------------------------------------------------------------------------------- /LaTeX/examples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lua/README.md: -------------------------------------------------------------------------------- 1 | # Lua 2 | -------------------------------------------------------------------------------- /Nim/README.md: -------------------------------------------------------------------------------- 1 | # Nim 2 | -------------------------------------------------------------------------------- /Odin-lang/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Opa/README.md: -------------------------------------------------------------------------------- 1 | # Opa 2 | -------------------------------------------------------------------------------- /R/README.md: -------------------------------------------------------------------------------- 1 | # R 2 | -------------------------------------------------------------------------------- /Red/README.md: -------------------------------------------------------------------------------- 1 | # Red 2 | -------------------------------------------------------------------------------- /SQL/README.md: -------------------------------------------------------------------------------- 1 | # SQL 2 | -------------------------------------------------------------------------------- /Shakespeare/books.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shakespeare/courses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tcl/README.md: -------------------------------------------------------------------------------- 1 | # Tcl 2 | -------------------------------------------------------------------------------- /YO/examples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Yacas/examples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hack/README.md: -------------------------------------------------------------------------------- 1 | # Hack 2 | -------------------------------------------------------------------------------- /Haxe/README.md: -------------------------------------------------------------------------------- 1 | # Haxe 2 | -------------------------------------------------------------------------------- /Html/README.md: -------------------------------------------------------------------------------- 1 | # Html 2 | -------------------------------------------------------------------------------- /Julia/README.md: -------------------------------------------------------------------------------- 1 | # Julia 2 | -------------------------------------------------------------------------------- /Kotlin/examples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lisp/README.md: -------------------------------------------------------------------------------- 1 | # Lisp 2 | -------------------------------------------------------------------------------- /MIPS/README.md: -------------------------------------------------------------------------------- 1 | # MIPS 2 | -------------------------------------------------------------------------------- /OCaml/README.md: -------------------------------------------------------------------------------- 1 | # OCaml 2 | -------------------------------------------------------------------------------- /Perl/README.md: -------------------------------------------------------------------------------- 1 | # Perl 2 | -------------------------------------------------------------------------------- /Plus/README.md: -------------------------------------------------------------------------------- 1 | # Plus 2 | -------------------------------------------------------------------------------- /QBasic/examples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ruby/README.md: -------------------------------------------------------------------------------- 1 | # Ruby 2 | -------------------------------------------------------------------------------- /Scss/README.md: -------------------------------------------------------------------------------- 1 | # Scss 2 | -------------------------------------------------------------------------------- /Swift/README.md: -------------------------------------------------------------------------------- 1 | # Swift 2 | -------------------------------------------------------------------------------- /VBScript/examples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ABC/courses.md: -------------------------------------------------------------------------------- 1 | Courses for ABC -------------------------------------------------------------------------------- /Docker/README.md: -------------------------------------------------------------------------------- 1 | # Docker 2 | -------------------------------------------------------------------------------- /Eiffel/README.md: -------------------------------------------------------------------------------- 1 | # Eiffel 2 | -------------------------------------------------------------------------------- /Elixir/README.md: -------------------------------------------------------------------------------- 1 | # Elixir 2 | -------------------------------------------------------------------------------- /Erlang/README.md: -------------------------------------------------------------------------------- 1 | # Erlang 2 | -------------------------------------------------------------------------------- /Flutter/README.md: -------------------------------------------------------------------------------- 1 | # Flutter 2 | -------------------------------------------------------------------------------- /Fortran/README.md: -------------------------------------------------------------------------------- 1 | # Fortran 2 | -------------------------------------------------------------------------------- /Fsharp/README.md: -------------------------------------------------------------------------------- 1 | # Fsharp 2 | -------------------------------------------------------------------------------- /Go-Gin/README.md: -------------------------------------------------------------------------------- 1 | # Go-Gin 2 | -------------------------------------------------------------------------------- /Groovy/README.md: -------------------------------------------------------------------------------- 1 | # Groovy 2 | -------------------------------------------------------------------------------- /Hashemi/README.md: -------------------------------------------------------------------------------- 1 | # Hashemi 2 | -------------------------------------------------------------------------------- /Haskell/README.md: -------------------------------------------------------------------------------- 1 | # Haskell 2 | -------------------------------------------------------------------------------- /Jython/README.md: -------------------------------------------------------------------------------- 1 | # Jython 2 | -------------------------------------------------------------------------------- /Makefile/README.md: -------------------------------------------------------------------------------- 1 | # Makefile 2 | -------------------------------------------------------------------------------- /Matlab/README.md: -------------------------------------------------------------------------------- 1 | # Matlab 2 | -------------------------------------------------------------------------------- /Neko-VM/README.md: -------------------------------------------------------------------------------- 1 | # Neko-VM 2 | -------------------------------------------------------------------------------- /Octave/README.md: -------------------------------------------------------------------------------- 1 | # Octave 2 | -------------------------------------------------------------------------------- /Pascal/README.md: -------------------------------------------------------------------------------- 1 | # Pascal 2 | -------------------------------------------------------------------------------- /Prolog/README.md: -------------------------------------------------------------------------------- 1 | # Prolog 2 | -------------------------------------------------------------------------------- /Scheme/README.md: -------------------------------------------------------------------------------- 1 | # Scheme 2 | -------------------------------------------------------------------------------- /Scratch/README.md: -------------------------------------------------------------------------------- 1 | # Scratch 2 | -------------------------------------------------------------------------------- /Solidity/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Solidity/README.md: -------------------------------------------------------------------------------- 1 | # Solidity 2 | -------------------------------------------------------------------------------- /B/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for B 2 | -------------------------------------------------------------------------------- /C/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for C 2 | -------------------------------------------------------------------------------- /D/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for D 2 | -------------------------------------------------------------------------------- /Deno/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Deno -------------------------------------------------------------------------------- /Mql4/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Mql4 -------------------------------------------------------------------------------- /Mql5/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Mql5 -------------------------------------------------------------------------------- /PowerShell/README.md: -------------------------------------------------------------------------------- 1 | # PowerShell 2 | -------------------------------------------------------------------------------- /R/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for R 2 | -------------------------------------------------------------------------------- /Typescript/README.md: -------------------------------------------------------------------------------- 1 | # Typescript 2 | -------------------------------------------------------------------------------- /V/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for V 2 | -------------------------------------------------------------------------------- /VB/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for VB 2 | -------------------------------------------------------------------------------- /Vim-Script/README.md: -------------------------------------------------------------------------------- 1 | # Vim-Script 2 | -------------------------------------------------------------------------------- /YO/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for YO 2 | -------------------------------------------------------------------------------- /قلب/books.md: -------------------------------------------------------------------------------- 1 | Useful Books for قلب 2 | -------------------------------------------------------------------------------- /ABC/examples/ABC.abc: -------------------------------------------------------------------------------- 1 | WRITE "Hello, world!" -------------------------------------------------------------------------------- /Ada/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Ada 2 | -------------------------------------------------------------------------------- /Algol/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Algol 2 | -------------------------------------------------------------------------------- /B/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for B 2 | -------------------------------------------------------------------------------- /Bash/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Bash 2 | -------------------------------------------------------------------------------- /Basic/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Basic 2 | -------------------------------------------------------------------------------- /Batch/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Batch 2 | -------------------------------------------------------------------------------- /C/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for C 2 | -------------------------------------------------------------------------------- /COBOL/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for COBOL 2 | -------------------------------------------------------------------------------- /Cobra/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Cobra 2 | -------------------------------------------------------------------------------- /Cow/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Cow 2 | -------------------------------------------------------------------------------- /Css/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Css 2 | -------------------------------------------------------------------------------- /Curl/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Curl 2 | -------------------------------------------------------------------------------- /D/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for D 2 | -------------------------------------------------------------------------------- /Dart/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Dart 2 | -------------------------------------------------------------------------------- /Elm/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Elm 2 | -------------------------------------------------------------------------------- /Flask/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Flask 2 | -------------------------------------------------------------------------------- /Hack/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Hack 2 | -------------------------------------------------------------------------------- /Haxe/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Haxe 2 | -------------------------------------------------------------------------------- /Html/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Html 2 | -------------------------------------------------------------------------------- /Ktor/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Ktor 2 | -------------------------------------------------------------------------------- /LaTeX/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for LaTeX 2 | -------------------------------------------------------------------------------- /Lisp/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Lisp 2 | -------------------------------------------------------------------------------- /Lua/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Lua 2 | -------------------------------------------------------------------------------- /Lua/examples/Lua.lua: -------------------------------------------------------------------------------- 1 | print("Hello World!") -------------------------------------------------------------------------------- /MIPS/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for MIPS 2 | -------------------------------------------------------------------------------- /Nim/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Nim 2 | -------------------------------------------------------------------------------- /Node.js/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Node.js -------------------------------------------------------------------------------- /OBJECTIVE-C/README.md: -------------------------------------------------------------------------------- 1 | # OBJECTIVE-C 2 | -------------------------------------------------------------------------------- /OCaml/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for OCaml 2 | -------------------------------------------------------------------------------- /Opa/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Opa 2 | -------------------------------------------------------------------------------- /Perl/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Perl 2 | -------------------------------------------------------------------------------- /Piet/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Piet 2 | -------------------------------------------------------------------------------- /Plus/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Plus 2 | -------------------------------------------------------------------------------- /QBasic/hello.bas: -------------------------------------------------------------------------------- 1 | PRINT "Hello, World!" 2 | -------------------------------------------------------------------------------- /R/examples/R.R: -------------------------------------------------------------------------------- 1 | print("Hello world") 2 | -------------------------------------------------------------------------------- /R/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for R 2 | -------------------------------------------------------------------------------- /Red/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Red 2 | -------------------------------------------------------------------------------- /Ruby/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Ruby 2 | -------------------------------------------------------------------------------- /Ruby/examples/ruby.rb: -------------------------------------------------------------------------------- 1 | puts "Hello World" -------------------------------------------------------------------------------- /SQL/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for SQL 2 | -------------------------------------------------------------------------------- /SQL/examples/SQL.sql: -------------------------------------------------------------------------------- 1 | SELECT 'Hello world!'; -------------------------------------------------------------------------------- /Scss/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Scss 2 | -------------------------------------------------------------------------------- /Solidity/examples/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Swift/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Swift 2 | -------------------------------------------------------------------------------- /Tcl/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Tcl 2 | -------------------------------------------------------------------------------- /Tcl/examples/hello.tcl: -------------------------------------------------------------------------------- 1 | puts "Hello, world!" -------------------------------------------------------------------------------- /V/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for V 2 | -------------------------------------------------------------------------------- /Vala/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Vala 2 | -------------------------------------------------------------------------------- /Yacas/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Yacas 2 | -------------------------------------------------------------------------------- /Ada/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Ada 2 | -------------------------------------------------------------------------------- /Awk/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Awk 2 | -------------------------------------------------------------------------------- /B/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for B 2 | -------------------------------------------------------------------------------- /Befunge/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Befunge 2 | -------------------------------------------------------------------------------- /Binary/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Binary 2 | -------------------------------------------------------------------------------- /Blender/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Blender 2 | -------------------------------------------------------------------------------- /C/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for C 2 | -------------------------------------------------------------------------------- /Carbon/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Carbon 2 | -------------------------------------------------------------------------------- /Clipper/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Clipper 2 | -------------------------------------------------------------------------------- /Clojure/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Clojure 2 | -------------------------------------------------------------------------------- /Cow/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Cow 2 | -------------------------------------------------------------------------------- /Cpp/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Cpp 2 | -------------------------------------------------------------------------------- /Crystal/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Crystal 2 | -------------------------------------------------------------------------------- /Css/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Css 2 | -------------------------------------------------------------------------------- /D/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for D 2 | -------------------------------------------------------------------------------- /Deno/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Deno -------------------------------------------------------------------------------- /Django/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Django 2 | -------------------------------------------------------------------------------- /Django/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Django -------------------------------------------------------------------------------- /Docker/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Docker 2 | -------------------------------------------------------------------------------- /Eiffel/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Eiffel 2 | -------------------------------------------------------------------------------- /Elixir/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Elixir 2 | -------------------------------------------------------------------------------- /Elm/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Elm 2 | -------------------------------------------------------------------------------- /Erlang/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Erlang 2 | -------------------------------------------------------------------------------- /Fastapi/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Fastapi 2 | -------------------------------------------------------------------------------- /Flask/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Flask -------------------------------------------------------------------------------- /Flutter/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Flutter 2 | -------------------------------------------------------------------------------- /Fortran/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Fortran 2 | -------------------------------------------------------------------------------- /Fsharp/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Fsharp 2 | -------------------------------------------------------------------------------- /Go-Gin/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Go-Gin 2 | -------------------------------------------------------------------------------- /Groovy/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Groovy 2 | -------------------------------------------------------------------------------- /Hascal/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Hascal 2 | -------------------------------------------------------------------------------- /Hashemi/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Hashemi 2 | -------------------------------------------------------------------------------- /Haskell/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Haskell 2 | -------------------------------------------------------------------------------- /Jquery/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for jQuery 2 | -------------------------------------------------------------------------------- /Julia/examples/julia.jl: -------------------------------------------------------------------------------- 1 | println("hello world") -------------------------------------------------------------------------------- /Jython/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Jython 2 | -------------------------------------------------------------------------------- /LOLCODE/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for LOLCODE 2 | -------------------------------------------------------------------------------- /Lisp/examples/Lispfile.e: -------------------------------------------------------------------------------- 1 | (print "Hello world") -------------------------------------------------------------------------------- /Lua/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Lua 2 | -------------------------------------------------------------------------------- /Matlab/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Matlab 2 | -------------------------------------------------------------------------------- /Mql4/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Mql4 -------------------------------------------------------------------------------- /Neko-VM/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Neko-VM 2 | -------------------------------------------------------------------------------- /Neko-VM/examples/Neko.n: -------------------------------------------------------------------------------- 1 | $print("Hello World!"); -------------------------------------------------------------------------------- /Nim/examples/Nim.nim: -------------------------------------------------------------------------------- 1 | echo "Hello world!" 2 | -------------------------------------------------------------------------------- /Nim/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Nim 2 | -------------------------------------------------------------------------------- /Octave/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Octave 2 | -------------------------------------------------------------------------------- /Opa/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Opa 2 | -------------------------------------------------------------------------------- /Pascal/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Pascal 2 | -------------------------------------------------------------------------------- /Pashmak/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Pashmak 2 | -------------------------------------------------------------------------------- /Pony/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Pony 2 | 3 | -------------------------------------------------------------------------------- /Prolog/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Prolog 2 | -------------------------------------------------------------------------------- /QBasic/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for QBasic 2 | -------------------------------------------------------------------------------- /R/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for R 2 | -------------------------------------------------------------------------------- /Red/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Red 2 | -------------------------------------------------------------------------------- /SQL/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for SQL 2 | -------------------------------------------------------------------------------- /Scheme/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Scheme 2 | -------------------------------------------------------------------------------- /Scratch/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Scratch 2 | -------------------------------------------------------------------------------- /Scratch/examples/SCRATCH.sb: -------------------------------------------------------------------------------- 1 | say Hello, World! -------------------------------------------------------------------------------- /Tcl/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Tcl 2 | -------------------------------------------------------------------------------- /V/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for V 2 | -------------------------------------------------------------------------------- /VB/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for VB 2 | -------------------------------------------------------------------------------- /YO/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for YO 2 | -------------------------------------------------------------------------------- /فردوسی/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for فردوسی 2 | -------------------------------------------------------------------------------- /قلب/resources.md: -------------------------------------------------------------------------------- 1 | Useful Resources for قلب 2 | -------------------------------------------------------------------------------- /Ada/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Ada 2 | -------------------------------------------------------------------------------- /Algol/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Algol 2 | -------------------------------------------------------------------------------- /Assembly/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Assembly 2 | -------------------------------------------------------------------------------- /Awk/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Awk 2 | -------------------------------------------------------------------------------- /Bash/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Bash 2 | -------------------------------------------------------------------------------- /Basic/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Basic 2 | -------------------------------------------------------------------------------- /Batch/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Batch 2 | -------------------------------------------------------------------------------- /Binary/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Binary 2 | -------------------------------------------------------------------------------- /Blender/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Blender -------------------------------------------------------------------------------- /Brainfuck/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Brainfuck 2 | -------------------------------------------------------------------------------- /COBOL/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for COBOL 2 | -------------------------------------------------------------------------------- /Cobra/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Cobra 2 | -------------------------------------------------------------------------------- /Cow/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Cow 2 | -------------------------------------------------------------------------------- /Cpp/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Cpp 2 | -------------------------------------------------------------------------------- /Crystal/examples/helloworld.cr: -------------------------------------------------------------------------------- 1 | puts "Hello World" 2 | -------------------------------------------------------------------------------- /Css/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Css 2 | -------------------------------------------------------------------------------- /Curl/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Curl 2 | -------------------------------------------------------------------------------- /Dart/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Dart 2 | -------------------------------------------------------------------------------- /Deno/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Deno -------------------------------------------------------------------------------- /Django/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Django -------------------------------------------------------------------------------- /Docker/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Docker 2 | -------------------------------------------------------------------------------- /Eiffel/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Eiffel 2 | -------------------------------------------------------------------------------- /Elixir/examples/elixir.ex: -------------------------------------------------------------------------------- 1 | IO.puts "Hello World" 2 | -------------------------------------------------------------------------------- /Elixir/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Elixir 2 | -------------------------------------------------------------------------------- /Elm/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Elm 2 | -------------------------------------------------------------------------------- /Erlang/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Erlang 2 | -------------------------------------------------------------------------------- /Flask/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Flask -------------------------------------------------------------------------------- /Forth/examples/Forth.fs: -------------------------------------------------------------------------------- 1 | CR ." Hello, World! " 2 | -------------------------------------------------------------------------------- /Fsharp/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Fsharp 2 | -------------------------------------------------------------------------------- /Go-Gin/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Go-Gin 2 | -------------------------------------------------------------------------------- /Go/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Go 2 | -------------------------------------------------------------------------------- /Groovy/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Groovy 2 | -------------------------------------------------------------------------------- /Hack/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Hack 2 | -------------------------------------------------------------------------------- /Hascal/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Hascal 2 | -------------------------------------------------------------------------------- /Haxe/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Haxe 2 | -------------------------------------------------------------------------------- /Html/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Html 2 | -------------------------------------------------------------------------------- /JavaScript/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for JavaScript 2 | -------------------------------------------------------------------------------- /Jquery/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for jQuery 2 | -------------------------------------------------------------------------------- /Julia/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Julia 2 | -------------------------------------------------------------------------------- /Jython/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Jython 2 | -------------------------------------------------------------------------------- /Ktor/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Ktor 2 | -------------------------------------------------------------------------------- /LaTeX/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for LaTeX 2 | -------------------------------------------------------------------------------- /Lisp/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for lisp 2 | -------------------------------------------------------------------------------- /Lua/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Lua 2 | -------------------------------------------------------------------------------- /MIPS/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for MIPS 2 | -------------------------------------------------------------------------------- /Makefile/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Makefile 2 | -------------------------------------------------------------------------------- /Matlab/examples/HelloWorld.m: -------------------------------------------------------------------------------- 1 | fprintf("Hello World\n"); -------------------------------------------------------------------------------- /Matlab/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Matlab 2 | -------------------------------------------------------------------------------- /Mql4/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Mql4 -------------------------------------------------------------------------------- /Mql5/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Mql5 -------------------------------------------------------------------------------- /Mql5/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Mql5 -------------------------------------------------------------------------------- /Nim/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Nim 2 | -------------------------------------------------------------------------------- /Node.js/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Node.js -------------------------------------------------------------------------------- /Not-English/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for ~English 2 | -------------------------------------------------------------------------------- /OCaml/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for OCaml 2 | -------------------------------------------------------------------------------- /Octave/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Octave 2 | -------------------------------------------------------------------------------- /Opa/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Opa 2 | -------------------------------------------------------------------------------- /Pascal/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Pascal 2 | -------------------------------------------------------------------------------- /Perl/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Perl 2 | -------------------------------------------------------------------------------- /Piet/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Piet 2 | -------------------------------------------------------------------------------- /Plus/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Plus 2 | -------------------------------------------------------------------------------- /Pony/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Pony 2 | -------------------------------------------------------------------------------- /PowerShell/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for PowerShell 2 | -------------------------------------------------------------------------------- /Prolog/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Prolog 2 | -------------------------------------------------------------------------------- /QBasic/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for QBasic 2 | -------------------------------------------------------------------------------- /Qsharp/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Qsharp 2 | -------------------------------------------------------------------------------- /Red/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Red 2 | -------------------------------------------------------------------------------- /Rockstar/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Rockstar 2 | -------------------------------------------------------------------------------- /Ruby/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Ruby 2 | -------------------------------------------------------------------------------- /SQL/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for SQL 2 | -------------------------------------------------------------------------------- /Scheme/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Scheme 2 | -------------------------------------------------------------------------------- /Scss/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Scss 2 | -------------------------------------------------------------------------------- /ShellScript/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for ShellScript -------------------------------------------------------------------------------- /Solidity/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Solidity 2 | -------------------------------------------------------------------------------- /Swift/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Swift 2 | -------------------------------------------------------------------------------- /Tcl/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Tcl 2 | -------------------------------------------------------------------------------- /Typescript/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Typescript 2 | -------------------------------------------------------------------------------- /VB/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for VB 2 | -------------------------------------------------------------------------------- /VBScript/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for VBScript 2 | -------------------------------------------------------------------------------- /Vala/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Vala 2 | -------------------------------------------------------------------------------- /Verilog/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Verilog 2 | -------------------------------------------------------------------------------- /Vim-Script/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Vim-Script 2 | -------------------------------------------------------------------------------- /Whitespace/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Whitespace 2 | -------------------------------------------------------------------------------- /YO/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for YO 2 | -------------------------------------------------------------------------------- /Yacas/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Yacas 2 | -------------------------------------------------------------------------------- /Zig-lang/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Zig-lang 2 | -------------------------------------------------------------------------------- /فردوسی/examples/helloworld.fd: -------------------------------------------------------------------------------- 1 | چاپ کن "سلام دنیا" 2 | -------------------------------------------------------------------------------- /فردوسی/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for فردوسی 2 | -------------------------------------------------------------------------------- /قلب/courses.md: -------------------------------------------------------------------------------- 1 | Useful Tutorial courses for قلب 2 | -------------------------------------------------------------------------------- /قلب/examples/hello.alb: -------------------------------------------------------------------------------- 1 | ‫(قول "مرحبا يا عالم!") 2 | -------------------------------------------------------------------------------- /Abdal-Autoit/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Abdal-Autoit 2 | -------------------------------------------------------------------------------- /Algol/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Algol 2 | -------------------------------------------------------------------------------- /Algol/examples/Algol.alg: -------------------------------------------------------------------------------- 1 | BEGIN DISPLAY("HELLO WORLD!") END. -------------------------------------------------------------------------------- /AppleScript/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for AppleScript 2 | -------------------------------------------------------------------------------- /AppleScript/examples/AppleScript.scpt: -------------------------------------------------------------------------------- 1 | say "Hello, world!" -------------------------------------------------------------------------------- /Arduino/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Arduino 2 | -------------------------------------------------------------------------------- /Assembly/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Assembly 2 | -------------------------------------------------------------------------------- /Bash/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Bash 2 | -------------------------------------------------------------------------------- /Basic/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Basic 2 | -------------------------------------------------------------------------------- /Batch/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Batch 2 | -------------------------------------------------------------------------------- /Befunge/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Befunge 2 | -------------------------------------------------------------------------------- /Binary/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Binary 2 | -------------------------------------------------------------------------------- /Blender/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Blender -------------------------------------------------------------------------------- /COBOL/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for COBOL 2 | -------------------------------------------------------------------------------- /Carbon/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Carbon 2 | -------------------------------------------------------------------------------- /Clipper/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Clipper 2 | -------------------------------------------------------------------------------- /Clojure/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Clojure 2 | -------------------------------------------------------------------------------- /Cobra/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Cobra 2 | -------------------------------------------------------------------------------- /CoffeScript/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for CoffeScript 2 | -------------------------------------------------------------------------------- /Crystal/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Crystal 2 | -------------------------------------------------------------------------------- /Curl/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Curl 2 | -------------------------------------------------------------------------------- /Dart/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Dart 2 | -------------------------------------------------------------------------------- /Delphi/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Css 2 | -------------------------------------------------------------------------------- /Docker/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Docker 2 | -------------------------------------------------------------------------------- /Eiffel/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Eiffel 2 | -------------------------------------------------------------------------------- /Elixir/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Elixir 2 | -------------------------------------------------------------------------------- /Erlang/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Erlang 2 | -------------------------------------------------------------------------------- /Flutter/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Flutter 2 | -------------------------------------------------------------------------------- /Forth/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Forth 2 | -------------------------------------------------------------------------------- /Fortran/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Fortran 2 | -------------------------------------------------------------------------------- /Fsharp/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Fsharp 2 | -------------------------------------------------------------------------------- /Go-Gin/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Go-Gin 2 | -------------------------------------------------------------------------------- /Groovy/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Groovy 2 | -------------------------------------------------------------------------------- /Hack/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Hack 2 | -------------------------------------------------------------------------------- /Hack/examples/Hack.hh: -------------------------------------------------------------------------------- 1 | 3 | env.out.print("Hello, world!") -------------------------------------------------------------------------------- /Scss/examples/Scss.scss: -------------------------------------------------------------------------------- 1 | body { 2 | &::before { 3 | content: 'Hello world !'; 4 | } 5 | } -------------------------------------------------------------------------------- /ShellScript/examples/helloworld.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # This is a comment! 3 | echo Hello World 4 | 5 | -------------------------------------------------------------------------------- /Befunge/examples/hello.bf: -------------------------------------------------------------------------------- 1 | >25*"!dlrow ,olleH":v 2 | v:,_@ 3 | > ^ 4 | -------------------------------------------------------------------------------- /Clipper/examples/hello_world.prg: -------------------------------------------------------------------------------- 1 | function MAIN 2 | clear 3 | ?"hello_world" 4 | wait 5 | return 6 | -------------------------------------------------------------------------------- /D/examples/Dlang.d: -------------------------------------------------------------------------------- 1 | import std.stdio; 2 | 3 | void main() 4 | { 5 | writeln("Hello World!"); 6 | } 7 | -------------------------------------------------------------------------------- /Hascal/examples/Hascal.has: -------------------------------------------------------------------------------- 1 | function main() : int { 2 | print("Hello World!") 3 | return 0 4 | } 5 | -------------------------------------------------------------------------------- /LOLCODE/examples/HelloWorld.lol: -------------------------------------------------------------------------------- 1 | HAI 1.2 2 | CAN HAS STDIO? 3 | VISIBLE "HelLO WoRlD!" 4 | KTHXBYE 5 | -------------------------------------------------------------------------------- /Nginx/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for NginX 2 | - [Nginx official Docs](https://nginx.org/en/docs/) 3 | 4 | -------------------------------------------------------------------------------- /YO/target/release/YO.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/YO/target/release/YO.exe -------------------------------------------------------------------------------- /Zig-lang/README.md: -------------------------------------------------------------------------------- 1 | # Zig programming language 2 | For complete documentation see: https://ziglang.org/ 3 | -------------------------------------------------------------------------------- /Dart/examples/.gitattributes: -------------------------------------------------------------------------------- 1 | cheatsheets linguist-detectable=false 2 | cheatsheets linguist-documentation=false -------------------------------------------------------------------------------- /Jquery/examples/Hello-world.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $("body").append("Hello world!"); 3 | }); 4 | -------------------------------------------------------------------------------- /LaTeX/examples/hello.tex: -------------------------------------------------------------------------------- 1 | \documentclass[a4paper]{article} 2 | \begin{document} 3 | Hello world! 4 | \end{document} -------------------------------------------------------------------------------- /Nginx/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Pine Script 2 | [Nginx Official Docs](https://nginx.org/en/docs/) 3 | -------------------------------------------------------------------------------- /Python/examples/.gitattributes: -------------------------------------------------------------------------------- 1 | cheatsheets linguist-detectable=false 2 | cheatsheets linguist-documentation=false -------------------------------------------------------------------------------- /B/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Parsa", 4 | "link": "https://github.com/parsampsh" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Perl/examples/perl.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | use strict; 4 | use warnings; 5 | 6 | print("Hello World !\n"); -------------------------------------------------------------------------------- /Qsharp/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Qiamast", 4 | "link": "https://github.com/Qiamast" 5 | } 6 | } -------------------------------------------------------------------------------- /فردوسی/examples/if_else.fd: -------------------------------------------------------------------------------- 1 | اگر 12 برابر 10 + 2 باشد آنگاه "ده با دو میشود دوازده" وگرنه "ده با دو نمیشود دوازده" 2 | -------------------------------------------------------------------------------- /Abdal-Autoit/examples/hello.au3: -------------------------------------------------------------------------------- 1 | #AutoIt3Wrapper_Change2CUI=y 2 | 3 | ConsoleWrite("Hello World !") 4 | 5 | Sleep(10000) -------------------------------------------------------------------------------- /C/examples/cLang.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("Hello World!\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /Fastapi/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Fastapi 2 | 3 | - [Official Document](https://fastapi.tiangolo.com/tutorial/) -------------------------------------------------------------------------------- /Go/examples/GoLang.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | fmt.Print("Hello world!") 7 | } 8 | -------------------------------------------------------------------------------- /Hascal/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Hasan", 4 | "link": "https://github.com/bistcuite" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Makefile/examples/makefile: -------------------------------------------------------------------------------- 1 | hellomake: hellomake.c hellofunc.c hellomake.h 2 | gcc -o hellomake hellomake.c hellofunc.c -I. -------------------------------------------------------------------------------- /Pashmak/README.md: -------------------------------------------------------------------------------- 1 | # The Pashmak Programming Language 2 | More information: [Pashmak](https://github.com/pashmaklang) 3 | -------------------------------------------------------------------------------- /ABC/books.md: -------------------------------------------------------------------------------- 1 | Books for ABC 2 | 3 | https://homepages.cwi.nl/~steven/abc/programmers/handbook.html 4 | http://www.idhub.com/abc/ -------------------------------------------------------------------------------- /Curl/examples/Curl.CURL: -------------------------------------------------------------------------------- 1 | {Curl 7.0, 8.0 applet} 2 | {text 3 | color = "blue", 4 | font-size = 16pt, 5 | Hello World} -------------------------------------------------------------------------------- /Forth/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Forth 2 | Programming Forth 3 | -------------------------------------------------------------------------------- /Html/examples/HTML.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

Hello world

6 | 7 | 8 | -------------------------------------------------------------------------------- /Kotlin/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Kotlin 2 | 3 | - [Kotlin Documentation](https://kotlinlang.org/docs/home.html) 4 | -------------------------------------------------------------------------------- /Qsharp/assets/images/Listing 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Qsharp/assets/images/Listing 1.png -------------------------------------------------------------------------------- /Qsharp/assets/images/Listing 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Qsharp/assets/images/Listing 2.png -------------------------------------------------------------------------------- /Qsharp/assets/images/Listing 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Qsharp/assets/images/Listing 3.png -------------------------------------------------------------------------------- /Qsharp/assets/images/Listing 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Qsharp/assets/images/Listing 4.png -------------------------------------------------------------------------------- /Qsharp/assets/images/Listing5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Qsharp/assets/images/Listing5.png -------------------------------------------------------------------------------- /Rockstar/README.md: -------------------------------------------------------------------------------- 1 |

Rockstar programming language

2 | For more info see: https://github.com/RockstarLang/rockstar 3 | -------------------------------------------------------------------------------- /Solidity/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Arman", 4 | "link": "https://github.com/arman324" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Yacas/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "AmirJEY", 4 | "link": "https://github.com/AmirJey" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /قلب/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Hadi Azarnasab", 4 | "link": "https://github.com/Hadi7546" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ABC/resources.md: -------------------------------------------------------------------------------- 1 | Useful Resources for ABC 2 | 3 | https://homepages.cwi.nl/~steven/abc/ 4 | https://codelani.com/languages/abc.html -------------------------------------------------------------------------------- /Awk/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sullivan(Epic-R-R)", 4 | "link": "https://github.com/Epic-R-R" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Clipper/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "s0v13tl3m0n", 4 | "link": "https://github.com/s0v13tl3m0n" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Crystal/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sourav Ghosh", 4 | "link": "https://github.com/varous7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /D/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sina", 4 | "link": "https://github.com/sina-devel" 5 | } 6 | } -------------------------------------------------------------------------------- /Django/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sajad Rahimi", 4 | "link": "https://github.com/SajadRahimi1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Flask/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sajad Rahimi", 4 | "link": "https://github.com/SajadRahimi1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Forth/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sami Ghasemi", 4 | "link": "https://github.com/sami2020pro/" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Haxe/examples/HelloWorld.hx: -------------------------------------------------------------------------------- 1 | class HelloWorld { 2 | static function main() { 3 | trace("Hello World!"); 4 | } 5 | } -------------------------------------------------------------------------------- /Jquery/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for jQuery 2 | - [jQuery Tutorial in w3schools](https://www.w3schools.com/jquery/) 3 | -------------------------------------------------------------------------------- /Nim/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Alireza Jafari", 4 | "link": "https://github.com/alirezaja1384" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Opa/examples/Opa.opa: -------------------------------------------------------------------------------- 1 | Server.start(Server.http, 2 | { title: "Hello" 3 | , page: function() {

Hello, web!

} 4 | } 5 | ) -------------------------------------------------------------------------------- /Piet/examples/styled_helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Piet/examples/styled_helloworld.png -------------------------------------------------------------------------------- /React/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sajad Rahimi", 4 | "link": "https://github.com/SajadRahimi1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ShellScript/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sourav Ghosh", 4 | "link": "https://github.com/varous7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Small-Basic/examples/Hello World!.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Small-Basic/examples/Hello World!.exe -------------------------------------------------------------------------------- /Small-Basic/examples/Hello World!.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Small-Basic/examples/Hello World!.pdb -------------------------------------------------------------------------------- /VB/examples/main.vb: -------------------------------------------------------------------------------- 1 | Module VBModule 2 | Sub Main() 3 | Console.WriteLine("Hello World") 4 | End Sub 5 | End Module -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | __pashmam__ 4 | *.sqlite3 5 | *.sqlite 6 | /Java/*.class 7 | test/* 8 | .DS_Store 9 | 10 | -------------------------------------------------------------------------------- /ABC/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Brian Gor", 4 | "link": "https://github.com/briangor" 5 | } 6 | } -------------------------------------------------------------------------------- /Abdal-Autoit/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "shahriaarrr", 4 | "link": "https://github.com/shahriaarrr" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Angular.js/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sajad Rahimi", 4 | "link": "https://github.com/SajadRahimi1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Blender/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sajad Rahimi", 4 | "link": "https://github.com/SajadRahimi1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Css/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amin Ghs", 4 | "link": "https://github.com/aminghs" 5 | } 6 | } -------------------------------------------------------------------------------- /Delphi/examples/HelloWorld.dpr: -------------------------------------------------------------------------------- 1 | program HelloWorld; 2 | 3 | {$APPTYPE CONSOLE} 4 | 5 | begin 6 | WriteLn('Hello World!!!'); 7 | end. -------------------------------------------------------------------------------- /Django/examples/Django.py: -------------------------------------------------------------------------------- 1 | from django.http import HttpResponse 2 | 3 | def index(request): 4 | return HttpResponse("Hello, world!") -------------------------------------------------------------------------------- /Erlang/examples/Erlang.erl: -------------------------------------------------------------------------------- 1 | -module(hello). 2 | -export([hello_world/0]). 3 | 4 | hello_world() -> 5 | io:format("Hello, World~n", []). -------------------------------------------------------------------------------- /Fastapi/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sajad Rahimi", 4 | "link": "https://github.com/SajadRahimi1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Lua/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amir Lesani", 4 | "link": "https://github.com/xenups" 5 | } 6 | } -------------------------------------------------------------------------------- /Octave/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sato", 4 | "link": "https://github.com/satocoder" 5 | } 6 | } -------------------------------------------------------------------------------- /Odin-lang/examples/hello.odin: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "core:fmt" 4 | 5 | main :: proc() { 6 | fmt.println("Hellope!") 7 | } 8 | -------------------------------------------------------------------------------- /Prolog/examples/hello.pl: -------------------------------------------------------------------------------- 1 | main:- 2 | process, 3 | halt. 4 | 5 | process:- 6 | write('Hello World'). 7 | :- main. -------------------------------------------------------------------------------- /Python/examples/cheatsheets/if-else.py: -------------------------------------------------------------------------------- 1 | t=int(input()) 2 | if t>=1: 3 | print("bigger than 1") 4 | else: 5 | print("smaller than 1") -------------------------------------------------------------------------------- /Python/examples/cheatsheets/os.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | # example of `system` function 4 | os.system("clear") 5 | os.system("ls -ltrh") 6 | -------------------------------------------------------------------------------- /Python/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Reza Bojnordi", 4 | "link": "https://github.com/rezabojnordi" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /R/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Arian Ebrahimi", 4 | "link": "https://github.com/ribrea" 5 | } 6 | } -------------------------------------------------------------------------------- /Scss/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "AzerothA", 4 | "link": "https://github.com/AzerothA" 5 | } 6 | } -------------------------------------------------------------------------------- /Small-Basic/examples/Hello World!.sb: -------------------------------------------------------------------------------- 1 | ' Display a single-line Hello World! message in the output 2 | TextWindow.WriteLine("Hello World!") -------------------------------------------------------------------------------- /Swift/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amir Lesani", 4 | "link": "https://github.com/xenups" 5 | } 6 | } -------------------------------------------------------------------------------- /Algol/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Faran Taghavi", 4 | "link": "https://github.com/F4R4N" 5 | } 6 | } -------------------------------------------------------------------------------- /Basic/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Faran Taghavi", 4 | "link": "https://github.com/F4R4N" 5 | } 6 | } -------------------------------------------------------------------------------- /Befunge/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Saeed Nejati", 4 | "link": "https://github.com/saeednj" 5 | } 6 | } -------------------------------------------------------------------------------- /Binary/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Faran Taghavi", 4 | "link": "https://github.com/F4R4N" 5 | } 6 | } -------------------------------------------------------------------------------- /C/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mohammad Ebrahime", 4 | "link": "https://github.com/moheb2000" 5 | } 6 | } -------------------------------------------------------------------------------- /Clojure/examples/ClojureLang.clj: -------------------------------------------------------------------------------- 1 | (ns clojure 2 | (:gen-class)) 3 | (defn hello-world [] 4 | (println "Hello World!!")) 5 | (hello-world) -------------------------------------------------------------------------------- /Clojure/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Milad Ahmadi", 4 | "link": "https://github.com/Mildroid" 5 | } 6 | } -------------------------------------------------------------------------------- /Docker/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Javad Rajabzade", 4 | "link": "https://github.com/Ja7adR" 5 | } 6 | } -------------------------------------------------------------------------------- /Flutter/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "shahriar", 4 | "link": "https://github.com/shahriaarrr" 5 | } 6 | } -------------------------------------------------------------------------------- /Fsharp/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "shahriar", 4 | "link": "https://github.com/shahriaarrr" 5 | } 6 | } -------------------------------------------------------------------------------- /Haxe/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amin Asadi", 4 | "link": "https://github.com/aminasadiam" 5 | } 6 | } -------------------------------------------------------------------------------- /Julia/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Ali Madihi", 4 | "link": "https://github.com/mrunderline" 5 | } 6 | } -------------------------------------------------------------------------------- /LaTeX/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": [ 3 | { 4 | "title": "byteface", 5 | "link": "https://github.com/byteface" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /Lisp/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Fahime Zivdar", 4 | "link": "https://github.com/Fahime-zv" 5 | } 6 | } -------------------------------------------------------------------------------- /Odin-lang/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirmohammad Ghazi", 4 | "link": "https://github.com/amirghazi87" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Pascal/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Arian Ebrahimi", 4 | "link": "https://github.com/ribrea" 5 | } 6 | } -------------------------------------------------------------------------------- /Pashmak/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Parsa", 4 | "link": "https://github.com/parsampsh" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Piet/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Ali Arj", 4 | "link": "https://github.com/ali0gamer1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Prolog/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Hassan Mohammadi", 4 | "link": "https://github.com/HSNHK" 5 | } 6 | } -------------------------------------------------------------------------------- /QBasic/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Annahita Mirhosseini", 4 | "link": "https://github.com/Annahita2004" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Qsharp/assets/images/Qsharp language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Qsharp/assets/images/Qsharp language.jpg -------------------------------------------------------------------------------- /React-Native/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sajad Rahimi", 4 | "link": "https://github.com/SajadRahimi1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /React-Native/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for React-Native 2 | 3 | - [Officail document](https://reactnative.dev/docs/getting-started) 4 | -------------------------------------------------------------------------------- /Red/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sami Ghasemi", 4 | "link": "https://github.com/sami2020pro" 5 | } 6 | } -------------------------------------------------------------------------------- /Scratch/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "shahriar", 4 | "link": "https://github.com/shahriaarrr" 5 | } 6 | } -------------------------------------------------------------------------------- /Small-Basic/examples/SmallBasicLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Small-Basic/examples/SmallBasicLibrary.dll -------------------------------------------------------------------------------- /Tcl/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Javad Rajabzade", 4 | "link": "https://github.com/Ja7adR" 5 | } 6 | } -------------------------------------------------------------------------------- /V/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Jadi Mirmirani", 4 | "link": "https://github.com/jadijadi" 5 | } 6 | } -------------------------------------------------------------------------------- /VB/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Ali Naderi", 4 | "link": "https://github.com/khod-naderi" 5 | } 6 | } -------------------------------------------------------------------------------- /Verilog/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Seyed Mohammad Amin Atyabi", 4 | "link": "https://github.com/SM2A" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /AppleScript/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Faran Taghavi", 4 | "link": "https://github.com/F4R4N" 5 | } 6 | } -------------------------------------------------------------------------------- /Arduino/examples/arduino.ino: -------------------------------------------------------------------------------- 1 | void setup() { 2 | Serial.begin(115200); 3 | } 4 | 5 | void loop() { 6 | Serial.println("Hello World !"); 7 | } -------------------------------------------------------------------------------- /Assembly/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Taha Farahani", 4 | "link": "https://github.com/tahacodes" 5 | } 6 | } -------------------------------------------------------------------------------- /Brainfuck/examples/brainfuck.bf: -------------------------------------------------------------------------------- 1 | ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>. 2 | -------------------------------------------------------------------------------- /COBOL/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sami Ghasemi", 4 | "link": "https://github.com/sami2020pro" 5 | } 6 | } -------------------------------------------------------------------------------- /CoffeScript/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mehen", 4 | "link": "https://github.com/mehanalavimajd" 5 | } 6 | } -------------------------------------------------------------------------------- /Cow/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Saeed Bayat", 4 | "link": "https://github.com/01shadowalker01" 5 | } 6 | } -------------------------------------------------------------------------------- /Cpp/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mani Jamali", 4 | "link": "https://github.com/manijamali2003" 5 | } 6 | } -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/01-print.dart: -------------------------------------------------------------------------------- 1 | // Main and Print() 2 | 3 | void main() { 4 | // Print 5 | print("Hello! This is Dart!"); 6 | } 7 | -------------------------------------------------------------------------------- /Eiffel/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Fahime Zivdar", 4 | "link": "https://github.com/Fahime-zv" 5 | } 6 | } -------------------------------------------------------------------------------- /Elm/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Saeed Bayat", 4 | "link": "https://github.com/01shadowalker01" 5 | } 6 | } -------------------------------------------------------------------------------- /Hashemi/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Erfan Saberi", 4 | "link": "https://github.com/erfansaberi" 5 | } 6 | } -------------------------------------------------------------------------------- /Haskell/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Javad Rajabzade", 4 | "link": "https://github.com/Ja7adR" 5 | } 6 | } -------------------------------------------------------------------------------- /Jython/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Saeed Bayat", 4 | "link": "https://github.com/01shadowalker01" 5 | } 6 | } -------------------------------------------------------------------------------- /LOLCODE/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Ali Arj", 4 | "link": "https://github.com/ali0gamer1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Nginx/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mohammad Esmaeili", 4 | "link": "https://github.com/momhiar" 5 | } 6 | } -------------------------------------------------------------------------------- /OBJECTIVE-C/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "shahriar", 4 | "link": "https://github.com/shahriaarrr" 5 | } 6 | } -------------------------------------------------------------------------------- /OCaml/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mohammad Masoudi", 4 | "link": "https://github.com/mmasoudih" 5 | } 6 | } -------------------------------------------------------------------------------- /Opa/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Perl/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Mohammadi", 4 | "link": "https://github.com/BlackIQ" 5 | } 6 | } -------------------------------------------------------------------------------- /Php/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mohammad Reza Ebadollah", 4 | "link": "https://github.com/ebad84" 5 | } 6 | } -------------------------------------------------------------------------------- /PowerShell/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Faran Taghavi", 4 | "link": "https://github.com/F4R4N" 5 | } 6 | } -------------------------------------------------------------------------------- /Rockstar/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Ali Arj", 4 | "link": "https://github.com/ali0gamer1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Ruby/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Mohammadi", 4 | "link": "https://github.com/BlackIQ" 5 | } 6 | } -------------------------------------------------------------------------------- /SQL/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Saeed Bayat", 4 | "link": "https://github.com/01shadowalker01" 5 | } 6 | } -------------------------------------------------------------------------------- /Scheme/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sami Ghasemi", 4 | "link": "https://github.com/sami2020pro" 5 | } 6 | } -------------------------------------------------------------------------------- /Shakespeare/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Muhammad Fazel Samarghandi", 4 | "link": "https://github.com/fazelsamar" 5 | } 6 | } -------------------------------------------------------------------------------- /Zig-lang/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Ali Arj", 4 | "link": "https://github.com/ali0gamer1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Ada/Examples/helloworld.adb: -------------------------------------------------------------------------------- 1 | with Text_IO; use Text_IO; 2 | procedure helloworld is 3 | begin 4 | Put_Line("Hello world!"); 5 | end helloworld; 6 | -------------------------------------------------------------------------------- /Arduino/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Mohammadi", 4 | "link": "https://github.com/BlackIQ" 5 | } 6 | } -------------------------------------------------------------------------------- /Bash/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mohammad Reza Ebadollah", 4 | "link": "https://github.com/ebad84" 5 | } 6 | } -------------------------------------------------------------------------------- /Batch/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mohammad Reza Ebadollah", 4 | "link": "https://github.com/ebad84" 5 | } 6 | } -------------------------------------------------------------------------------- /Carbon/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Arshia Pazoki", 4 | "link": "https://github.com/ArshiaPazoki" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Cobra/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Csharp/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Mohammadi", 4 | "link": "https://github.com/BlackIQ" 5 | } 6 | } -------------------------------------------------------------------------------- /Curl/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Delphi/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Peyman Majidi Moein", 4 | "link": "https://github.com/peymanmajidi" 5 | } 6 | } -------------------------------------------------------------------------------- /Elixir/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Kourosh Alinaghi", 4 | "link": "https://github.com/KouroshAlinaghi" 5 | } 6 | } -------------------------------------------------------------------------------- /Erlang/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Fortran/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Saeed Bayat", 4 | "link": "https://github.com/01shadowalker01" 5 | } 6 | } -------------------------------------------------------------------------------- /Go-Gin/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Go/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sina Yeganeh Faal", 4 | "link": "https://github.com/SinaYeganeh0-0" 5 | } 6 | } -------------------------------------------------------------------------------- /Hack/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Html/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Sina Yeganeh Faal", 4 | "link": "https://github.com/SinaYeganeh0-0" 5 | } 6 | } -------------------------------------------------------------------------------- /Jquery/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Masoud Nickparvar", 4 | "link": "https://github.com/masoudnick" 5 | } 6 | } -------------------------------------------------------------------------------- /MIPS/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mohammad Kadkhodaei", 4 | "link": "https://github.com/mohammadkad" 5 | } 6 | } -------------------------------------------------------------------------------- /Makefile/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Neko-VM/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Pine-Script/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mohammad Esmaeili", 4 | "link": "https://github.com/momhiar" 5 | } 6 | } -------------------------------------------------------------------------------- /Plus/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Pony/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Komeil Parseh", 4 | "link": "https://github.com/komeilparseh" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Rust/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirmahdi Tafreshi", 4 | "link": "https://github.com/mr-tafreshi" 5 | } 6 | } -------------------------------------------------------------------------------- /Vala/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /فردوسی/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Komeil Parseh", 4 | "link": "https://github.com/komeilparseh" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Awk/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Awk 2 | 3 | - [Effective awk Programming](https://www.amazon.com/Effective-awk-Programming-Arnold-Robbins/dp/0596000707) 4 | -------------------------------------------------------------------------------- /Brainfuck/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirmahdi Tafreshi", 4 | "link": "https://github.com/mr-tafreshi" 5 | } 6 | } -------------------------------------------------------------------------------- /Deno/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Hamidreza Ghahremani", 4 | "link": "https://github.com/hamidreza01" 5 | } 6 | } -------------------------------------------------------------------------------- /Ktor/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "AlirezabBashi98", 4 | "link": "https://github.com/alirezabashi98" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Matlab/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mohammad Mirsafaei", 4 | "link": "https://github.com/MohammadMirsafaei" 5 | } 6 | } -------------------------------------------------------------------------------- /Not-English/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Peyman Majidi Moein", 4 | "link": "https://github.com/peymanmajidi" 5 | } 6 | } -------------------------------------------------------------------------------- /Verilog/examples/Hello_World.v: -------------------------------------------------------------------------------- 1 | module main; 2 | initial 3 | begin 4 | $display("Hello World"); 5 | $finish; 6 | end 7 | endmodule 8 | -------------------------------------------------------------------------------- /Vim-Script/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhossein Meydani", 4 | "link": "https://github.com/amireshoon" 5 | } 6 | } -------------------------------------------------------------------------------- /Whitespace/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Ali Arj", 4 | "link": "https://github.com/ali0gamer1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Groovy/examples/hello_world.groovy: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * @author Eloy 'Elyas' Hadizadeh Tasbiti 4 | * Created in 1/21/21, 12:35 PM. 5 | */ 6 | println "Hello, world!" -------------------------------------------------------------------------------- /LaTeX/README.md: -------------------------------------------------------------------------------- 1 | # LaTeX 2 | 3 | ## download 4 | 5 | http://tug.org/mactex/morepackages.html 6 | 7 | ## run 8 | 9 | ```bash 10 | latex hello 11 | ``` -------------------------------------------------------------------------------- /Node.js/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Hamidreza Ghahremani", 4 | "link": "https://github.com/hamidreza01" 5 | } 6 | } -------------------------------------------------------------------------------- /YO/labra.yoda: -------------------------------------------------------------------------------- 1 | !![ 2 | "assemblyname" = "YO" , 3 | "outputtype" = "console" , 4 | "sourcepath" = "\src" , 5 | "assetspath" = "\assets" 6 | ] -------------------------------------------------------------------------------- /Ada/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhosain Shahsavari", 4 | "link": "https://github.com/amirhosainshahsavari" 5 | } 6 | } -------------------------------------------------------------------------------- /Groovy/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Elyas 'Eloy' Hadizadeh Tasbiti", 4 | "link": "https://github.com/elyashadizadeh" 5 | } 6 | } -------------------------------------------------------------------------------- /Java/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Java 2 | 3 | - [w3Schools Java](https://www.w3schools.com/java/) 4 | - [Oracle Java Docs](https://docs.oracle.com/en/java/) -------------------------------------------------------------------------------- /LOLCODE/README.md: -------------------------------------------------------------------------------- 1 | # LOLCODE Programming language 2 | 3 | For Testing see: https://www.dcode.fr/lolcode-language 4 | 5 | For more info see: http://www.lolcode.org 6 | -------------------------------------------------------------------------------- /Makefile/examples/hellomake.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | // call a function in another file 5 | myPrintHelloMake(); 6 | 7 | return(0); 8 | } -------------------------------------------------------------------------------- /VBScript/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Santhita Krajangwongpaisan", 4 | "link": "https://github.com/santhitak" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Fastapi/examples/Fastapi.py: -------------------------------------------------------------------------------- 1 | from fastapi import Body, FastAPI 2 | 3 | app = FastAPI() 4 | 5 | @app.get("/") 6 | async def root(): 7 | return {"message": "Hello World"} -------------------------------------------------------------------------------- /Mql4/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mahdi Abbaspour Shahmarasi", 4 | "link": "https://github.com/mahdi-abbaspour-shahmarasi" 5 | } 6 | } -------------------------------------------------------------------------------- /Mql5/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Mahdi Abbaspour Shahmarasi", 4 | "link": "https://github.com/mahdi-abbaspour-shahmarasi" 5 | } 6 | } -------------------------------------------------------------------------------- /Pashmak/examples/ask_name.pashm: -------------------------------------------------------------------------------- 1 | # This program asks name of user and says hello 2 | 3 | print('what is your name? ') 4 | $name = read() 5 | println('hello ' + $name) 6 | -------------------------------------------------------------------------------- /Rockstar/examples/HelloWorld.rock: -------------------------------------------------------------------------------- 1 | (Test in https://codewithrockstar.com/online) 2 | 3 | 4 | Print takes Message 5 | Shout Message 6 | 7 | Print taking "Hello World!" 8 | -------------------------------------------------------------------------------- /Small-Basic/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": { 3 | "title": "Amirhosain Shahsavari", 4 | "link": "https://github.com/amirhosainshahsavari" 5 | } 6 | } -------------------------------------------------------------------------------- /Forth/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Forth 2 | forth website 3 | 4 | forth tutorials list 5 | -------------------------------------------------------------------------------- /Not-English/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for ~English 2 | 3 | https://github.com/AnotherTest/-English 4 | 5 | # Video 6 | 7 | https://www.aparat.com/v/trquO 8 | 9 | -------------------------------------------------------------------------------- /React/examples/index.js: -------------------------------------------------------------------------------- 1 | import ReactDOM from 'react-dom' 2 | 3 | function Hello() { 4 | return

Hello World

; 5 | } 6 | 7 | ReactDOM.render(, document.body); -------------------------------------------------------------------------------- /Makefile/examples/hellofunc.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | void myPrintHelloMake(void) { 5 | 6 | printf("Hello makefiles!\n"); 7 | 8 | return; 9 | } -------------------------------------------------------------------------------- /Php/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Php 2 | 3 | - [PHP official documentation](https://www.php.net/manual/) 4 | - [W3Schools PHP tutorial](https://www.w3schools.com/php/) 5 | -------------------------------------------------------------------------------- /Pine-Script/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Pine Script 2 | [TradingView documentation for PineScript v5](https://www.tradingview.com/pine-script-docs/en/v5/Introduction.html) 3 | -------------------------------------------------------------------------------- /React-Native/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for React-Native 2 | 3 | - [Learning React Native](https://github.com/SajadRahimi1/programming-ebooks/blob/main/React%20Native/react-native.pdf) 4 | -------------------------------------------------------------------------------- /Ruby/examples/09-strings.rb: -------------------------------------------------------------------------------- 1 | # Ruby cheatsheet number 9 2 | # Strings 3 | 4 | name = "amir" 5 | 6 | # Downcase 7 | puts name.downcase 8 | 9 | # Uppercase 10 | puts name.upcase -------------------------------------------------------------------------------- /Eiffel/examples/Eiffelfile.e: -------------------------------------------------------------------------------- 1 | class 2 | HELLO_WORLD 3 | create 4 | make 5 | feature 6 | make 7 | do 8 | print ("Hello, world!%N") 9 | end 10 | end -------------------------------------------------------------------------------- /React/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for React 2 | 3 | - [Officail Document](https://reactjs.org/docs/getting-started.html) 4 | 5 | - [w3school](https://www.w3schools.com/react/default.asp) -------------------------------------------------------------------------------- /YO/src/main.yo: -------------------------------------------------------------------------------- 1 | #[app::classname("MyApp")] 2 | #[app::wait(true)] 3 | #[cfg::CIL(true)] 4 | 5 | include 'ystdio' 6 | 7 | func main() 8 | { 9 | io::print("Hello World") 10 | } 11 | -------------------------------------------------------------------------------- /Flask/examples/Flask.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | app = Flask(__name__) 3 | 4 | @app.route("/") 5 | def hello(): 6 | return "Hello World" 7 | 8 | if __name__ == "__main__": 9 | app.run() -------------------------------------------------------------------------------- /React-Native/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for React-Native 2 | 3 | - [React Native - The Practical Guide [2022 Edition]](https://www.udemy.com/course/react-native-the-practical-guide) 4 | -------------------------------------------------------------------------------- /Csharp/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Csharp 2 | - [W3 Schools C#](https://www.w3schools.com/cs/index.php)
3 | - [Microsoft C# Docs](https://docs.microsoft.com/en-us/dotnet/csharp/)
4 | -------------------------------------------------------------------------------- /Delphi/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Delphi 2 | 3 | https://riptutorial.com/delphi/example/1949/hello-world 4 | 5 | https://delphi.fandom.com/wiki/Creating_your_First_Application 6 | 7 | 8 | -------------------------------------------------------------------------------- /Solidity/examples/Solidity.sol: -------------------------------------------------------------------------------- 1 | pragma solidity ^0.4.0; 2 | 3 | contract myContract { 4 | function get()public pure returns (string memory){ 5 | return 'Hello World!'; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Blender/examples/Blender.py: -------------------------------------------------------------------------------- 1 | import Blender 2 | from Blender import Scene, Text3d 3 | 4 | text = Text3d.New("Text") 5 | text.setText("Hello World") 6 | Scene.GetCurrent().objects.new(text) 7 | Blender.Redraw() -------------------------------------------------------------------------------- /Piet/README.md: -------------------------------------------------------------------------------- 1 | # Piet a visual programming language 2 | 3 | For testing see: https://www.bertnase.de/npiet/npiet-execute.php 4 | 5 | For more info see: https://www.dangermouse.net/esoteric/piet.html 6 | -------------------------------------------------------------------------------- /Zig-lang/examples/helloworld.zig: -------------------------------------------------------------------------------- 1 | const std = @import("std"); 2 | 3 | pub fn main() !void { 4 | const stdout = std.io.getStdOut().writer(); 5 | try stdout.print("Hello, {}!\n", .{"world"}); 6 | } 7 | -------------------------------------------------------------------------------- /Qsharp/assets/images/Introduction-to-Quantum-Computing-with QSharp-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Qsharp/assets/images/Introduction-to-Quantum-Computing-with QSharp-book.png -------------------------------------------------------------------------------- /Binary/examples/Binary.bin: -------------------------------------------------------------------------------- 1 | 0 1 0 0 1 0 0 0 0 1 1 0 0 1 0 1 0 1 1 0 1 1 0 0 0 1 1 0 1 1 0 0 0 1 1 0 1 1 1 1 0 0 1 0 0 0 0 0 0 1 0 1 0 1 1 1 0 1 1 0 1 1 1 1 0 1 1 1 0 0 1 0 0 1 1 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 1 -------------------------------------------------------------------------------- /COBOL/examples/main.cbl: -------------------------------------------------------------------------------- 1 | IDENTIFICATION DIVISION. 2 | PROGRAM-ID. HELLO-WORLD. 3 | 4 | ENVIRONMENT DIVISION. 5 | 6 | DATA DIVISION. 7 | 8 | PROCEDURE DIVISION. 9 | DISPLAY "Hello World!". 10 | STOP RUN. 11 | -------------------------------------------------------------------------------- /Java/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial Courses for Java 2 | 3 | - [CodeCademy Beginner Java](https://www.codecademy.com/learn/learn-java) 4 | - [Treehouse Java Track](https://teamtreehouse.com/tracks/beginning-java) 5 | -------------------------------------------------------------------------------- /JavaScript/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for JavaScript 2 | 3 | 1. [JavaScript.info](https://javascript.info/) 4 | 2. [Programming Notes for Professionals books](https://books.goalkicker.com/JavaScriptBook/) 5 | -------------------------------------------------------------------------------- /Ktor/examples/Ktor.kt: -------------------------------------------------------------------------------- 1 | fun main() { 2 | embeddedServer(Netty, port = 8000) { 3 | routing { 4 | get ("/") { 5 | call.respondText("Hello, world!") 6 | } 7 | } 8 | }.start(wait = true) 9 | } 10 | -------------------------------------------------------------------------------- /Whitespace/README.md: -------------------------------------------------------------------------------- 1 | # Whitespace programming language 2 | For testing see: https://www.dcode.fr/whitespace-language 3 | 4 | For more info see: https://www.whoishostingthis.com/resources/whitespace-programming 5 | -------------------------------------------------------------------------------- /Deno/examples/helloworld.js: -------------------------------------------------------------------------------- 1 | // asynchronously 2 | await Deno.writeAll(Deno.stdout, new TextEncoder().encode("hello world")); 3 | 4 | // or, sychronously 5 | Deno.writeAllSync(Deno.stdout, new TextEncoder().encode("hello world")); -------------------------------------------------------------------------------- /Ruby/examples/11-hash.rb: -------------------------------------------------------------------------------- 1 | # Ruby cheatsheet number 11 2 | # Hash 3 | 4 | # Create a hash array 5 | a = Hash.new("a") 6 | a = { 7 | "name" => "Amirhossein", 8 | "age" => 19 9 | } 10 | 11 | # Print name 12 | puts a["name"] -------------------------------------------------------------------------------- /Rust/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Rust 2 | 3 | - [The Rust Programming Language](https://www.udemy.com/course/rust-lang/) 4 | - [Rust lang: The complete beginner's guide](https://www.udemy.com/course/rustaceans/) 5 | -------------------------------------------------------------------------------- /Csharp/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Csharp 2 | - [PluralSight C# Courses](https://www.pluralsight.com/paths/csharp)
3 | - [Udemy Complete C# Masterclass](https://www.udemy.com/course/complete-csharp-masterclass/)
-------------------------------------------------------------------------------- /Dart/examples/cheatsheets/10-operators-4.dart: -------------------------------------------------------------------------------- 1 | // Operators | increment and decrement 2 | 3 | void main() { 4 | // Add one 5 | int a = 15; 6 | a++; // a = a + 1 7 | 8 | int b = 20; 9 | b--; // b = b - 1 10 | } 11 | -------------------------------------------------------------------------------- /Nginx/examples/nginx.conf: -------------------------------------------------------------------------------- 1 | server{ 2 | listen 80; 3 | server_name 127.0.0.1; 4 | location / { 5 | add_header Content-Type text/plain; 6 | return 200 'Hello World'; 7 | } 8 | } -------------------------------------------------------------------------------- /JavaScript/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for JavaScript 2 | 3 | 1. [freeCodeCamp](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/) 4 | 2. [freeCodeCamp Video Tutorial](https://youtu.be/PkZNo7MFNFg) 5 | -------------------------------------------------------------------------------- /Verilog/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Verilog 2 | 3 | - [Verilog Digital System Design: Register Transfer Level Synthesis, Testbench, and Verification 2nd Edition](https://www.amazon.com/Verilog-Digital-System-Design-Verification/dp/0071445641) 4 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/23-std-1.dart: -------------------------------------------------------------------------------- 1 | // Std | Input, Output 2 | 3 | import 'dart:io'; 4 | 5 | void main() { 6 | stdout.write("What is your name? "); 7 | final name = stdin.readLineSync(); 8 | 9 | print("Welcome $name"); 10 | } 11 | -------------------------------------------------------------------------------- /Ktor/README.md: -------------------------------------------------------------------------------- 1 | # Ktor 2 | ## Simple and fun 3 | Ktor is an asynchronous framework for creating microservices, web applications, and more. It’s fun, free, and open source. 4 | 5 | ### Refrences 6 | 7 | - [Ktor Programming](https://ktor.io/)) 8 | 9 | -------------------------------------------------------------------------------- /Angular.js/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Angular.js 2 | 3 | - [Angular Projects, Second Edition-Aristeidis Bampakost](https://github.com/SajadRahimi1/programming-ebooks/blob/main/Angular-js/Angular%20Projects%2C%20Second%20Edition-Aristeidis%20Bampakost.pdf) 4 | -------------------------------------------------------------------------------- /Java/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": [ 3 | { 4 | "title": "Mani Jamali", 5 | "link": "https://github.com/manijamali2003" 6 | }, 7 | { 8 | "title": "Seyed Mohammad Amin Atyabi", 9 | "link": "https://github.com/SM2A" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /Vim-Script/examples/vim.vim: -------------------------------------------------------------------------------- 1 | " This is the Hello World program in Vim script. 2 | echo "Hello, world!" 3 | 4 | " This is a simple while loop in Vim script. 5 | let i = 1 6 | while i < 5 7 | echo "count is" i 8 | let i += 1 9 | endwhile 10 | unlet i -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/14-variables-2.dart: -------------------------------------------------------------------------------- 1 | // Variables | Var 2 | 3 | void main() { 4 | // Give exactly data type 5 | String name = "Amir"; 6 | int age = 18; 7 | 8 | // Use var 9 | var new_name = "Amir"; 10 | var new_age = 18; 11 | } 12 | -------------------------------------------------------------------------------- /Kotlin/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": [ 3 | { 4 | "title": "Amirhossein Mohammadi", 5 | "link": "https://github.com/BlackIQ" 6 | }, 7 | { 8 | "title": "Seyed Mohammad Amin Atyabi", 9 | "link": "https://github.com/SM2A" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/04-strings-2.dart: -------------------------------------------------------------------------------- 1 | // Uppercase, Lowercase 2 | 3 | void main() { 4 | String centense = "I love Dart"; 5 | 6 | // Uppercase 7 | print(centense.toUpperCase()); 8 | 9 | // Lowercase 10 | print(centense.toLowerCase()); 11 | } 12 | -------------------------------------------------------------------------------- /Groovy/examples/HelloWorld.groovy: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * @author Eloy 'Elyas' Hadizadeh Tasbiti 4 | * Created in 1/21/21, 12:35 PM. 5 | */ 6 | class HelloWorld { 7 | static void main(String[] args) { 8 | System.out.println("Hello, world!") 9 | } 10 | } -------------------------------------------------------------------------------- /Qsharp/assets/images/Learn to build your first quantum solution with the Quantum Development Kit and Q#.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Qsharp/assets/images/Learn to build your first quantum solution with the Quantum Development Kit and Q#.png -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/25-enum-2.dart: -------------------------------------------------------------------------------- 1 | // Enum | Values 2 | 3 | enum People { 4 | amir, 5 | ali, 6 | ana, 7 | nilo, 8 | } 9 | 10 | void main() { 11 | // We use values to select on of the list 12 | 13 | var name = People.values[1]; // Ali 14 | } 15 | -------------------------------------------------------------------------------- /Qsharp/books.md: -------------------------------------------------------------------------------- 1 | #### [Introduction to Quantum Computing with Q Sharp](https://books.google.co.uk/books?id=UnFuEAAAQBAJ&lpg "Introduction to Quantum Computing with Q Sharp") 2 | 3 | -------------------------------------------------------------------------------- /React-Native/examples/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Text, View } from "react-native"; 3 | 4 | export default function HelloWorld() { 5 | return ( 6 | 7 | Hello World 8 | 9 | ); 10 | } -------------------------------------------------------------------------------- /YO/README.md: -------------------------------------------------------------------------------- 1 | # YO programming language 2 | 3 | This language is a compiler language and is currently being developed by Iranian programmers 4 | 5 | # Refrence 6 | A repository of this language will be available soon.... 7 | 8 | [telegram channel](https://t.me/YO_Lang) 9 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/24-random.dart: -------------------------------------------------------------------------------- 1 | // Math | Random 2 | 3 | import 'dart:math'; 4 | 5 | void main() { 6 | // Define a random 7 | final rng = Random(); 8 | 9 | // Select an int in range 0 to 3 10 | final x = rng.nextInt(3); 11 | 12 | print(x); 13 | } 14 | -------------------------------------------------------------------------------- /Qsharp/examples/Operation.qs: -------------------------------------------------------------------------------- 1 | namespace Quantum.HelloWorld 2 | 3 | { 4 | 5 | open Microsoft.Quantum.Canon; 6 | 7 | open Microsoft.Quantum.Primitive; 8 | 9 | operation SayHello () : Unit { 10 | 11 | Message("Hello Q#:)"); 12 | 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /فردوسی/README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | # فردوسی 4 | 5 | زبان برنامه نویسی فردوسی 6 | یک زبان برنامه نویسی ساده؛ نوشته شده با پایتون 7 | 8 | # لینک های مفید 9 | 10 | [گیت هاب فردوسی](https://github.com/Ferdowsi-lang/Ferdowsi-Python-Interpreter) 11 | 12 |
13 | -------------------------------------------------------------------------------- /Cpp/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Cpp 2 | 3 | - [Effective Modern C++: 42 Specific Ways to Improve Your Use of C++11 and C++14 1st Edition](https://www.amazon.com/Effective-Modern-Specific-Ways-Improve/dp/1491903996/ref=zg_bs_9045760011_5/139-6098627-6239428?pd_rd_i=1491903996&psc=1) 4 | -------------------------------------------------------------------------------- /Java/examples/Java.java: -------------------------------------------------------------------------------- 1 | class Java 2 | { 3 | public static void main (String[] args) 4 | { 5 | System.out.println ("Hello World!"); 6 | } 7 | } 8 | 9 | // To run this: 10 | // $ javac Java.java 11 | // $ java Java 12 | // You will see "Hello World!" 13 | -------------------------------------------------------------------------------- /Go-Gin/examples/gin.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "github.com/gin-gonic/gin" 5 | "net/http" 6 | ) 7 | 8 | func main() { 9 | r := gin.Default() 10 | 11 | r.GET("/", func(c *gin.Context) { 12 | c.String(http.StatusOK, "Hello world") 13 | }) 14 | 15 | r.Run() 16 | } -------------------------------------------------------------------------------- /Hascal/README.md: -------------------------------------------------------------------------------- 1 | # Hascal 2 | Hascal is a general-purpose open source programming language that makes it easy to build simple,optimal, reliable, and efficient software. 3 | 4 | ## Reference 5 | - [GitHub Repo](https://github.com/hascal/hascal) 6 | - [Website](https://hascal.github.io) 7 | -------------------------------------------------------------------------------- /Fastapi/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Fastapi 2 | 3 | - [Complete FastAPI masterclass + Instagram clone project](https://www.udemy.com/course/completefastapi/) 4 | - [FastAPI - The Complete Course 2022 (Beginner + Advanced)](https://www.udemy.com/course/fastapi-the-complete-course/) -------------------------------------------------------------------------------- /Scala/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": [ 3 | { 4 | "title": "Elyas 'Eloy' Hadizadeh Tasbiti", 5 | "link": "https://github.com/elyashadizadeh" 6 | }, 7 | { 8 | "title": "Meysam P. Ganji", 9 | "link": "https://github.com/meysampg" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /Forth/README.md: -------------------------------------------------------------------------------- 1 | # Forth 2 | Forth is a procedural, stack-based programming language and interactive environment designed by Charles H. "Chuck" Moore and first used by other programmers in 1970. 3 | 4 | ## Refrences 5 | 6 | - [Wikipedia](https://en.wikipedia.org/wiki/Forth_(programming_language)) 7 | -------------------------------------------------------------------------------- /Jython/examples/Jython.jy: -------------------------------------------------------------------------------- 1 | import org.python.util.PythonInterpreter; 2 | 3 | public class JythonHelloWorld { 4 | public static void main(String[] args) { 5 | try(PythonInterpreter pyInterp = new PythonInterpreter()) { 6 | pyInterp.exec("print('Hello Python World!')"); 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/09-operators-3.dart: -------------------------------------------------------------------------------- 1 | // Operators | Part 3 2 | 3 | void main() { 4 | print(10 - 2 * 3); // Output is 4 5 | // In this case, first 2 * 3 6 | // Second, 10 - 6 7 | 8 | print((10 - 2) * 3); // Output is 24 9 | // Now, first 10 - 2 10 | // Then, 8 * 3 11 | } 12 | -------------------------------------------------------------------------------- /Cpp/examples/Cplusplus.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main() 6 | { 7 | cout << "Hello World!"; 8 | } 9 | /* 10 | In the 2011 version and higher you don't need to write 11 | ((return 0;)) At the end of the program and you can compile your program without it. 12 | */ -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/15-variables-3.dart: -------------------------------------------------------------------------------- 1 | // Variables | Final 2 | 3 | void main() { 4 | // Use data type and change it later 5 | String name = "Amir"; 6 | name = "Ana"; 7 | 8 | // Use Final. 9 | 10 | // In this case you can not change a final variable 11 | final age = 18; 12 | } 13 | -------------------------------------------------------------------------------- /React/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for React 2 | 3 | - [how to code in reactjs](https://github.com/SajadRahimi1/programming-ebooks/blob/main/React/how-to-code-in-reactjs.pdf) 4 | 5 | - [30 days of react](https://github.com/SajadRahimi1/programming-ebooks/blob/main/React/30-days-of-react-ebook-fullstackio.pdf) 6 | -------------------------------------------------------------------------------- /Dart/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": [ 3 | { 4 | "title": "Amir Lesani", 5 | "link": "https://github.com/xenups" 6 | }, 7 | { 8 | "title": "Amirhossein Mohammadi", 9 | "link": "https://github.com/BlackIQ" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /Pashmak/examples/get_password.pashm: -------------------------------------------------------------------------------- 1 | # valid password 2 | $password = '123' 3 | 4 | # ask password from user 5 | print('enter the password: ') 6 | $input = read() 7 | 8 | # check password 9 | if $input == $password 10 | println('WELCOME!') 11 | else 12 | println('invalid password') 13 | endif 14 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/13-comments.dart: -------------------------------------------------------------------------------- 1 | // Comments 2 | 3 | /// This is documentational comment 4 | void main() { 5 | // TODO: This is a todo. 6 | 7 | // This is one line comment 8 | // print("Hi"); // This code wont be executed 9 | 10 | /* 11 | This is multi lines comment 12 | */ 13 | } 14 | -------------------------------------------------------------------------------- /JavaScript/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": [ 3 | { 4 | "title": "Amin Ghs", 5 | "link": "https://github.com/aminghs" 6 | }, 7 | { 8 | "title": "Muthusamy K", 9 | "link": "https://github.com/KMuthusamyms" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /Pashmak/examples/array.pashm: -------------------------------------------------------------------------------- 1 | # We have a array from names. here we print them one by one 2 | 3 | # declare $names array 4 | $names = ['parsa', 'pashmak', 'something'] 5 | 6 | # set a counter for loop 7 | $i = 0 8 | 9 | while $i < len($names) 10 | println($names[$i]) 11 | $i = $i + 1 12 | endwhile 13 | -------------------------------------------------------------------------------- /Typescript/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": [ 3 | { 4 | "title": "Morteza Heydari", 5 | "link": "https://github.com/MortezaHeydari97" 6 | }, 7 | { 8 | "title": "Amirhossein Mohammadi", 9 | "link": "https://github.com/BlackIQ" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /Scala/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Scala 2 | 3 | - [Programming in Scala](https://www.artima.com/shop/programming_in_scala_4ed) by Martin Odersky, Lex Spoon, and Bill 4 | Venners 5 | - [Functional Programming in Scala](https://www.manning.com/books/functional-programming-in-scala) by Paul Chiusano and 6 | Runar Bjarnason -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/31-map-1.dart: -------------------------------------------------------------------------------- 1 | // Map | Part 1 2 | 3 | void main() { 4 | // Maps are same as dictionaries in Python 5 | var amir = { 6 | 'name': 'Amirhossein', 7 | 'age': 18, 8 | 'height': 1.6, 9 | }; 10 | 11 | // Get data 12 | var name = amir['name']; 13 | 14 | print(name); 15 | } 16 | -------------------------------------------------------------------------------- /Go/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Go 2 | 3 | [Donal Feury's Youtube channel](https://www.youtube.com/channel/UCTHij3Ac5GizLsn5yB4IX_Q) - 🌍 En 4 | 5 | [Virgool posts with Golang tag](https://virgool.io/tag/%DA%AF%D9%88%D9%84%D9%86%DA%AF) - 🌍 Fa 6 | 7 | [Virgool posts to learn files in go](https://vrgl.ir/Csdnc) - 🌍 Fa 8 | -------------------------------------------------------------------------------- /React/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for React 2 | 3 | - [React - The Complete Guide (incl Hooks, React Router, Redux)](https://www.udemy.com/course/react-the-complete-guide-incl-redux) 4 | - [Complete React Developer in 2022 (w/ Redux, Hooks, GraphQL)](https://www.udemy.com/course/complete-react-developer-zero-to-mastery) -------------------------------------------------------------------------------- /Python/examples/cheatsheets/file.py: -------------------------------------------------------------------------------- 1 | with open("my_file.txt", 'a') as file: # if file not made, make it and then open: 2 | file.read() # read the file 3 | for i in file.readline(): 4 | print(i) # read line by line 5 | 6 | file.write("Hello, World!") # write some text in file 7 | 8 | # with close file automaticly 9 | -------------------------------------------------------------------------------- /Ruby/examples/13-iterators.rb: -------------------------------------------------------------------------------- 1 | # Ruby cheatsheet number 13 2 | # Iterators 3 | 4 | # Collect an array 5 | a = ["amir", "ali", "mamad"] 6 | b = Array.new 7 | b = a.collect{|item| item} 8 | 9 | puts b 10 | 11 | # Collect and do an action 12 | aa = [1, 2, 3] 13 | bb = Array.new 14 | bb = aa.collect{|item| item * 2} 15 | 16 | puts bb -------------------------------------------------------------------------------- /قلب/README.md: -------------------------------------------------------------------------------- 1 | قلب is a programming language by Ramsey Nasser. The name means Heart and is a recursive acronym for قلب: لغة برمجة meaning Heart: A Programming Language. Acronyms in Arabic are uncommon and difficult to pull off, and the author states that this is the first recursive one he has seen. It was created as an art installation. 2 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/19-loop-2.dart: -------------------------------------------------------------------------------- 1 | // Loop | For 2 | 3 | void main() { 4 | var i = 0; 5 | 6 | // While i is less than 5 7 | while (i < 5) { 8 | print(i); // Print i 9 | i++; // Add one to i 10 | } 11 | 12 | // Same loop but with for 13 | for (var c = 0; c < 5; c++) { 14 | print(c); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Scala/README.md: -------------------------------------------------------------------------------- 1 | # Scala 2 | 3 | [Scala](https://www.scala-lang.org/) combines object-oriented and functional programming in one concise, high-level 4 | language. Scala's static types help avoid bugs in complex applications, and its JVM and JavaScript runtimes let you 5 | build high-performance systems with easy access to huge ecosystems of libraries. -------------------------------------------------------------------------------- /Scala/examples/Hello.scala: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * @author Elyas 'ELoy' Hadizadeh Tasbiti 4 | * Created in 1/21/21, 11:32 AM. 5 | */ 6 | object Hello extends App { 7 | println("Hello, World!") 8 | } 9 | 10 | /** 11 | * To run: 12 | * 1. Compile the file: `scalac Hello.scala` 13 | * 2. Execute it: `scala Hello` 14 | */ -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/20-loop-3.dart: -------------------------------------------------------------------------------- 1 | // Loop | Break and Continue 2 | 3 | void main() { 4 | for (var i = 0; i < 10; i++) { 5 | print(i); 6 | if (i == 5) { 7 | print("We got 5"); 8 | break; 9 | } 10 | if (i % 2 == 0) { 11 | print("Number can be devied to 2"); 12 | continue; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Go/examples/fib.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func fibonacci() func() int { 6 | a, b, c := 0, 1, 0 7 | return func() int { 8 | c = a 9 | a, b = b, a+b 10 | return c 11 | } 12 | } 13 | 14 | func main() { 15 | fib := fibonacci() 16 | for i := 0; i < 10; i++ { 17 | fmt.Printf("fib(%d) = %d\n", i, fib()) 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/07-operators-1.dart: -------------------------------------------------------------------------------- 1 | // Operators | Part 1 2 | 3 | void main() { 4 | // + 5 | print(5 + 2); // 7 6 | 7 | // - 8 | print(5 - 2); // 3 9 | 10 | // * 11 | print(5 * 2); // 10 12 | 13 | // / 14 | print(5 / 2); // 2.5 15 | 16 | // ~/ 17 | print(5 ~/ 2); // 2 18 | 19 | // % 20 | print(5 % 2); // 1 21 | } 22 | -------------------------------------------------------------------------------- /MIPS/examples/hello.s: -------------------------------------------------------------------------------- 1 | .data 2 | msg: .asciiz "Hello World!" 3 | 4 | .text 5 | .globl main 6 | 7 | main: li $v0, 4 # syscall 4 (print string) 8 | la $a0, msg # argument: string 9 | syscall # print the string 10 | #jr $ra # return to caller 11 | li $v0, 10 12 | syscall -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/16-variables-4.dart: -------------------------------------------------------------------------------- 1 | // Variables | Dynamic 2 | 3 | void main() { 4 | var x = "Amir"; 5 | // x = true; // We can not change a var, const, final and other data types 6 | 7 | // We use dynamic to be able to change data type 8 | dynamic y = 10; // Now is int 9 | y = true; // Now is boolean 10 | y = "Amir"; // Now is string 11 | } 12 | -------------------------------------------------------------------------------- /Kotlin/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Kotlin 2 | 3 | - [Kotlin Programming: The Big Nerd Ranch Guide](https://bignerdranch.com/books/kotlin-programming-the-big-nerd-ranch-guide-2nd/) 4 | - [Mastering Kotlin: Learn advanced Kotlin programming techniques to build apps for Android, iOS, and the webe](https://www.amazon.com/Mastering-Kotlin-advanced-programming-techniques/dp/1838555722) -------------------------------------------------------------------------------- /Whitespace/examples/helloworld.ws: -------------------------------------------------------------------------------- 1 | Dont_change_anything_😂 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/12-operators-6.dart: -------------------------------------------------------------------------------- 1 | // Operators | Logical 2 | 3 | void main() { 4 | // If one side is true, returns true 5 | print(5 < 2 || 5 < 7); 6 | 7 | // If both sides are true, returns true 8 | print(2 < 5 && 'Hi' == 'Hi'); 9 | 10 | // Example 11 | String email = "me@blackiq.ir"; 12 | print(email.isNotEmpty && email.contains("@")); 13 | } 14 | -------------------------------------------------------------------------------- /Kotlin/README.md: -------------------------------------------------------------------------------- 1 | # Kotlin 2 | 3 | Kotlin is a modern but already mature programming language aimed to make developers happier. It’s concise, safe, interoperable with Java and other languages, and provides many ways to reuse code between multiple platforms for productive programming. 4 | 5 | # Refrences 6 | 7 | - [kotlinlang.org](https://kotlinlang.org/docs/getting-started.html) 8 | -------------------------------------------------------------------------------- /Pashmak/examples/loop.pashm: -------------------------------------------------------------------------------- 1 | # This is a simple loop printing numbers from 1 to 99 2 | 3 | func myfunc($args) 4 | $args = format_args($args) 5 | $n = $args[0] 6 | 7 | println('starting...') 8 | 9 | $i = 1 10 | while $i < $n 11 | println($i) 12 | $i = $i + 1 13 | endwhile 14 | 15 | println('finished') 16 | endfunc 17 | 18 | myfunc(100) 19 | -------------------------------------------------------------------------------- /Odin-lang/README.md: -------------------------------------------------------------------------------- 1 | # Odin lang 2 | Odin is a general-purpose programming language with distinct typing, built for high performance, modern systems, and built-in data-oriented data types. The Odin Programming Language, the C alternative for the joy of programming. 3 | 4 | ## Refrences 5 | Some links to articles that introduces this language. 6 | 7 | - [official website](https://odin-lang.org/) 8 | -------------------------------------------------------------------------------- /Ruby/examples/05-operators.rb: -------------------------------------------------------------------------------- 1 | # Ruby cheatsheet number 5 2 | # Operators 3 | 4 | # = 5 | a = 1 6 | b = 2 7 | c, d, e, f = 3, 4, 5, 6 8 | a, b = c, d 9 | 10 | # + 11 | z = a + b + c + d + e + f 12 | puts z 13 | 14 | puts "- - - - -" 15 | 16 | # defined 17 | # We use this operator to check that variable is defined or not 18 | puts defined? a 19 | puts defined? y 20 | 21 | puts "- - - - -" -------------------------------------------------------------------------------- /Dart/README.md: -------------------------------------------------------------------------------- 1 | # Dart 2 | 3 | Dart is a programming language designed for client development, such as for the web and mobile apps. It is developed by Google and can also be used to build server and desktop applications. It is an object-oriented, class-based, garbage-collected language with C-style syntax. 4 | 5 | ## Refrences 6 | 7 | - [Wikipedia](https://en.wikipedia.org/wiki/Dart_(programming_language)) 8 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/18-loop-1.dart: -------------------------------------------------------------------------------- 1 | // Loop | While 2 | 3 | void main() { 4 | var i = 0; 5 | 6 | // While i is less than 5 7 | while (i < 5) { 8 | print(i); // Print i 9 | i++; // Add one to i 10 | } 11 | 12 | var c = 0; 13 | 14 | // While c is less than 5 15 | while (c < 5) { 16 | print("*" * i); // Multi string making 17 | c++; // Add one to c 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Pine-Script/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Pine Script 2 | - [TradingView official documentation for Pine Script V5](https://www.tradingview.com/pine-script-docs/en/v5/index.html) 3 | - [TradingView Pine Script Programming From Scratch: Build indicators, signal generators, backtest and automate trading logic (Teach Yourself Series) ](https://www.amazon.com/TradingView-Pine-Script-Programming-Scratch/dp/B08Z43NM4J) 4 | -------------------------------------------------------------------------------- /Pashmak/examples/fib.pashm: -------------------------------------------------------------------------------- 1 | # Printing the fibonacci pattern 2 | 3 | func fib($args) 4 | $args = format_args($args) 5 | $n = $args[0] 6 | 7 | $a = 1 8 | $b = 1 9 | 10 | while $a < $n 11 | println($a) 12 | 13 | $tmp_a = $a 14 | $tmp_b = $b 15 | 16 | $a = $tmp_b 17 | 18 | $b = $tmp_a + $tmp_b 19 | endwhile 20 | endfunc 21 | 22 | fib(10000) 23 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/11-operators-5.dart: -------------------------------------------------------------------------------- 1 | // Operators | Conditionals 2 | 3 | void main() { 4 | print(5 == 5); // Equal 5 | print(5 != 5); // Not equal 6 | print(5 >= 5); // Greater or equal 7 | print(5 > 5); // Greater than 8 | print(5 <= 5); // Less or equal 9 | print(5 < 5); // Less than 10 | 11 | // In line conditions 12 | int age = 16; 13 | String type = age > 18 ? "adult" : "child"; 14 | } 15 | -------------------------------------------------------------------------------- /Rust/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Rust 2 | Rust is a multi-paradigm, general-purpose programming language designed for performance and safety, especially safe concurrency. 3 | Rust is syntactically similar to C++, but can guarantee memory safety by using a borrow checker to validate references 4 | 5 | - [Wikipedia](https://en.wikipedia.org/wiki/Rust_(programming_language)) 6 | - [Official Website](https://www.rust-lang.org/) 7 | -------------------------------------------------------------------------------- /Scala/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Scala 2 | 3 | - [Getting Started](https://docs.scala-lang.org/getting-started/index.html) 4 | - [Tour of Scala](https://docs.scala-lang.org/tour/tour-of-scala.html) 5 | - [Scala Cheatsheet](https://docs.scala-lang.org/cheatsheets/index.html) 6 | - [Scala Language Specification (v2.13)](https://scala-lang.org/files/archive/spec/2.13/) 7 | - [Scala API Docs](https://docs.scala-lang.org/api/all.html) -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/21-condition-2.dart: -------------------------------------------------------------------------------- 1 | // Conditions | Switch 2 | 3 | void main() { 4 | const stage = 1; 5 | 6 | switch (stage) { 7 | case 1: 8 | print("Gold!"); 9 | break; 10 | case 1: 11 | print("Silver!"); 12 | break; 13 | case 1: 14 | print("Bronze!"); 15 | break; 16 | default: 17 | print("Sorry, You are not in first 3 :("); 18 | break; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Pashmak/examples/square.pashm: -------------------------------------------------------------------------------- 1 | # Print an square 2 | 3 | func print_square($args) 4 | $args = format_args($args) 5 | $x = $args[0] 6 | $y = $args[1] 7 | $i = 0 8 | while $i < $x 9 | $j = 0 10 | while $j < $y 11 | print('*') 12 | $j = $j + 1 13 | endwhile 14 | println('') 15 | $i = $i + 1 16 | endwhile 17 | endfunc 18 | 19 | print_square(10, 25) 20 | -------------------------------------------------------------------------------- /Whitespace/examples/Whitespace and C hello world: -------------------------------------------------------------------------------- 1 | #include 2 | //dont_change_anything 3 | int main() 4 | { 5 | printf("Hello World!"); 6 | 7 | return 1; 8 | } 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/05-strings-3.dart: -------------------------------------------------------------------------------- 1 | // Find & Replcae 2 | 3 | void main() { 4 | String you = "I love you"; 5 | 6 | // Checking 7 | print(you.contains("you")); // This is true. $you has you in it 8 | 9 | String langs = "I love Dart. I love Js. I love Python"; 10 | 11 | // Replce current words with new words 12 | String new_langs = langs.replaceAll("love", "hate"); // Replced love to hate. 13 | 14 | print(new_langs); 15 | } 16 | -------------------------------------------------------------------------------- /Django/README.md: -------------------------------------------------------------------------------- 1 | # Django 2 | Django is a Python-based free and open-source web framework that follows the model–template–views architectural pattern. 3 | It is maintained by the Django Software Foundation, an independent organization established in the US as a 501 non-profit 4 | 5 | 6 | 7 | ## Refrences 8 | 9 | 10 | - [Official Website](https://www.djangoproject.com/) 11 | - [Wikipedia](https://en.wikipedia.org/wiki/Django_(web_framework)) 12 | -------------------------------------------------------------------------------- /Python/examples/cheatsheets/variable.py: -------------------------------------------------------------------------------- 1 | # str 2 | a = "test" 3 | b = "test" 4 | 5 | print(a +" "+ b) 6 | 7 | # int 8 | 9 | c = 25 10 | d = 45 11 | 12 | print(25 + 45) 13 | 14 | ## memory id in computer for variable in python 15 | my_var = 10 16 | 17 | print(my_var) 18 | print(id(my_var)) 19 | 20 | print(hex(id(my_var))) 21 | 22 | 23 | greeting = "hello" 24 | 25 | print(greeting) 26 | print(id(greeting)) 27 | 28 | print(hex(id(greeting))) 29 | -------------------------------------------------------------------------------- /Php/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Php 2 | - [The Complete 2021 PHP Full Stack Web Developer Bootcamp](https://www.udemy.com/course/the-complete-php-full-stack-web-developer-bootcamp/) 3 | - [PHP for Beginners: PHP Crash Course 2021](https://www.udemy.com/course/learn-php-for-beginners-php-crash-course-2021/) 4 | - [PHP for Beginners - Become a PHP Master - CMS Project](https://www.udemy.com/course/php-for-complete-beginners-includes-msql-object-oriented/) -------------------------------------------------------------------------------- /ShellScript/README.md: -------------------------------------------------------------------------------- 1 | # ShellScript 2 | A shell script is a computer program designed to be run by the Unix shell, a command-line interpreter.[1] The various dialects of shell scripts are considered to be scripting languages. Typical operations performed by shell scripts include file manipulation, program execution, and printing text. A script which sets up the environment, runs the program, and does any necessary cleanup, logging, etc. is called a wrapper. 3 | 4 | -------------------------------------------------------------------------------- /Csharp/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Csharp 2 | 3 | - [C# Cookbook Modern Recipes for Professional Developers-Joe Mayo-O'Reilly.pdf](https://github.com/SajadRahimi1/programming-ebooks/blob/main/C%23/C%23%20Cookbook%20Modern%20Recipes%20for%20Professional%20Developers-Joe%20Mayo-O'Reilly.pdf) 4 | - [Code like a Pro in C#-Jort Rodenburg-Manning.pdf](https://github.com/SajadRahimi1/programming-ebooks/blob/main/C%23/Code%20like%20a%20Pro%20in%20C%23-Jort%20Rodenburg-Manning.pdf) 5 | -------------------------------------------------------------------------------- /Carbon/examples/Fibonacci.Carbon: -------------------------------------------------------------------------------- 1 | package sample api; 2 | 3 | fn Fibonacci(n: i32, a: i32, b: i32) -> i32 { 4 | Print("{0} ", a); 5 | if (n == 0) { 6 | return a; 7 | } 8 | return Fibonacci(n - 1, b, a + b); 9 | } 10 | 11 | 12 | fn Main() -> i32 { 13 | var n: i32 = 6; 14 | let nthFibNumber : auto = Fibonacci(n, 1, 1); 15 | Print("*****"); 16 | Print("(N+1)th fibonacci number : {0}", nthFibNumber); 17 | return nthFibNumber; 18 | } -------------------------------------------------------------------------------- /Fastapi/README.md: -------------------------------------------------------------------------------- 1 | # Fastapi 2 | FastAPI is a Web framework for developing RESTful APIs in Python. 3 | FastAPI is based on Pydantic and type hints to validate, serialize, and deserialize data, and automatically auto-generate OpenAPI documents. 4 | It fully supports asynchronous programming and can run with Uvicorn and Gunicorn. 5 | 6 | 7 | ## Refrences 8 | 9 | - [Official Website](https://fastapi.tiangolo.com/) 10 | - [Wikipedia](https://en.wikipedia.org/wiki/FastAPI) -------------------------------------------------------------------------------- /React-Native/README.md: -------------------------------------------------------------------------------- 1 | # React-Native 2 | React Native is an open-source UI software framework created by Meta Platforms, Inc. 3 | It is used to develop applications for Android, Android TV, iOS, macOS, tvOS, Web, Windows and UWP by enabling developers to use the React framework along with native platform capabilities 4 | 5 | 6 | 7 | ## Refrences 8 | 9 | 10 | - [Wikipedia](https://en.wikipedia.org/wiki/React_Native) 11 | - [Official Web](https://reactnative.dev/) 12 | -------------------------------------------------------------------------------- /Python/examples/cheatsheets/tkinter.py: -------------------------------------------------------------------------------- 1 | from tkinter import * 2 | 3 | root = Tk() 4 | root.title("My Program") 5 | root.geometry('200x300') 6 | 7 | def function(): 8 | pass 9 | 10 | lbl_show_hello = Label( 11 | root, 12 | text = "Hello, World!", 13 | bg = 'red', 14 | rg = 'black' 15 | ).pack() # you can use grid to have indexable page 16 | 17 | btn = Button( 18 | root, 19 | text = "Click Me!" 20 | command = function 21 | ).pack() 22 | 23 | root.mainloop() 24 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/17-condition-1.dart: -------------------------------------------------------------------------------- 1 | // Conditions | If, Else if, Else 2 | 3 | void main() { 4 | const age = 15; 5 | 6 | if (age < 20) { 7 | print("Your under 20"); 8 | print("Too young to work here"); 9 | } else if (age < 30) { 10 | print("Your between 30 and 20"); 11 | print("You can work here"); 12 | } else { 13 | print("Sorry, You are too old"); 14 | print("You can not work here"); 15 | } 16 | print("Have a good day"); 17 | } 18 | -------------------------------------------------------------------------------- /React/README.md: -------------------------------------------------------------------------------- 1 | # React 2 | React is a free and open-source front-end JavaScript library for building user interfaces based on UI components. 3 | It is maintained by Meta and a community of individual developers and companies. 4 | React can be used as a base in the development of single-page or mobile applications. 5 | 6 | 7 | 8 | ## Refrences 9 | 10 | 11 | - [Wikipedia](https://en.wikipedia.org/wiki/React_(JavaScript_library)) 12 | - [Official Web](https://reactjs.org) 13 | -------------------------------------------------------------------------------- /Ruby/examples/10-arrays-2.rb: -------------------------------------------------------------------------------- 1 | # Ruby cheatsheet number 10 2 | # Arrays | 2 3 | 4 | # Create test array 5 | test = Array.new(20) 6 | 7 | # Get length and size 8 | puts test.length # 20 9 | puts test.size # 20 10 | 11 | # Create array with length and item 12 | test2 = Array.new(10, "Amir") 13 | puts test2 14 | 15 | # Create array like a loop 16 | test3 = Array.new(0..10) 17 | puts test3 18 | 19 | # Create array with [] 20 | test4 = Array.[](1, 2, 3, 4, 5) 21 | test5 = Array[1, 2, 3, 4, 5] -------------------------------------------------------------------------------- /Java/README.md: -------------------------------------------------------------------------------- 1 | # Java 2 | 3 | Java is a programming language and computing platform first released by Sun Microsystems in 1995. It has evolved from humble beginnings to power a large share of today’s digital world, by providing the reliable platform upon which many services and applications are built. New, innovative products and digital services designed for the future continue to rely on Java, as well. 4 | 5 | # Refrences 6 | 7 | - [java.com](https://www.java.com/en/download/help/whatis_java.html) -------------------------------------------------------------------------------- /Ruby/examples/08-method.rb: -------------------------------------------------------------------------------- 1 | # Ruby cheatsheet number 8 2 | # Methods 3 | 4 | # Create a sample method 5 | def method1 6 | puts "Method 1 is run" 7 | end 8 | 9 | # Create a method with value 10 | def method2(name, age) 11 | puts "#{name} is #{age} years old!" 12 | end 13 | 14 | # Return value 15 | def method3(a, b) 16 | a + b 17 | end 18 | 19 | # Run methods 20 | method1 21 | 22 | puts "- - - - -" 23 | 24 | method2("Amir", 19) 25 | 26 | puts "- - - - -" 27 | 28 | puts method3(10, 20) -------------------------------------------------------------------------------- /Python/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Python 2 | Python is an interpreted high-level general-purpose programming language. 3 | Its design philosophy emphasizes code readability with its use of significant indentation. 4 | Its language constructs as well as its object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects 5 | 6 | - [Wikipedia](https://en.wikipedia.org/wiki/Python_(programming_language)) 7 | - [Official Website](https://www.python.org/) -------------------------------------------------------------------------------- /Clipper/README.md: -------------------------------------------------------------------------------- 1 | ## Clipper 2 | Clipper was a language made for MS DOS in 1985. Between 1985 and 1992 millions of programs were made in clipper with the main purpose of database management. 3 | However clipper failed to make the jump from MS DOS to Windows and as a result next to no applications were developed in clipper after 1995. 4 | ## Refrences 5 | Some links to wikipedia or other articles that introduces this language. 6 | 7 | - [Wikipedia](https://en.wikipedia.org/wiki/Clipper_(programming_language)) 8 | -------------------------------------------------------------------------------- /Crystal/README.md: -------------------------------------------------------------------------------- 1 | # Crystal 2 | Crystal is a general-purpose, object-oriented programming language, designed and developed by Ary Borenszweig, Juan Wajnerman, Brian Cardiff and more than 300 contributors.With syntax inspired by the language Ruby, it is a compiled language with static type-checking, but specifying the types of variables or method arguments is generally unneeded. Crystal is currently in active development. It is released as free and open-source software under the Apache License version 2.0. 3 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/30-set-2.dart: -------------------------------------------------------------------------------- 1 | // Set | Part 2 2 | 3 | void main() { 4 | // Create an euCountries set 5 | var euCounties = {'Italy', 'Russa', 'UK'}; 6 | 7 | // Create an asCountries set 8 | var asCounties = {'Indea', 'Russa', 'UEA'}; 9 | 10 | // Get non repeted items 11 | print(euCounties.union(asCounties)); 12 | 13 | // Get same items 14 | print(euCounties.intersection(asCounties)); 15 | 16 | // Get differences 17 | print(euCounties.difference(asCounties)); 18 | } 19 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/26-lists-1.dart: -------------------------------------------------------------------------------- 1 | // Lists | Part 1 2 | 3 | void main() { 4 | // Create a list 5 | var names = ["Amir", "Ana", "Ali", "Nilo"]; 6 | 7 | // Change one 8 | names[3] = "Hossein"; 9 | 10 | // Get lenght of a list 11 | var len = names.length; 12 | 13 | // Print each of the list | 1 14 | for (var name in names) { 15 | print(name); 16 | } 17 | 18 | // Print each of the list | 2 19 | for (var i = 0; i < len; i++) { 20 | print(names[i]); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Flask/README.md: -------------------------------------------------------------------------------- 1 | # Flask 2 | Flask is a micro web framework written in Python. 3 | It is classified as a microframework because it does not require particular tools or libraries. 4 | It has no database abstraction layer, form validation, or any other components where pre-existing third-party libraries provide common functions 5 | 6 | 7 | 8 | ## Refrences 9 | 10 | 11 | - [Official Website](https://flask.palletsprojects.com/) 12 | - [Wikipedia](https://en.wikipedia.org/wiki/Flask_(web_framework)) 13 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/29-set-1.dart: -------------------------------------------------------------------------------- 1 | // Set | Part 1 2 | 3 | void main() { 4 | // Set is a list kind of 5 | var countries = {'Iran', 'US', 'UK'}; 6 | 7 | // Add one 8 | countries.add('Germany'); 9 | 10 | // Remove 11 | countries.remove('Iran'); 12 | 13 | // Get first 14 | print(countries.first); 15 | 16 | // Get last 17 | print(countries.last); 18 | 19 | // Get lenght 20 | print(countries.length); 21 | 22 | // Get data with index 23 | print(countries.elementAt(2)); 24 | } 25 | -------------------------------------------------------------------------------- /Ruby/examples/02-begin-end.rb: -------------------------------------------------------------------------------- 1 | # Ruby cheatsheet number 2 2 | # BEGIN and END statements 3 | 4 | # This is the code stuff 5 | 6 | print <<"Run" 7 | This is running and stuff 8 | Run 9 | 10 | # Begin 11 | # In "begin" we add some codes that are going to run at the first 12 | 13 | BEGIN { 14 | puts "Begin part of app!" 15 | puts "- - - - -" 16 | } 17 | 18 | # End 19 | # In "End" we add some codes that are going to run at the end 20 | 21 | END { 22 | puts "- - - - -" 23 | puts "End part of app!" 24 | } -------------------------------------------------------------------------------- /Flutter/examples/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | void main() => runApp(MyApp()); 4 | 5 | class MyApp extends StatelessWidget { 6 | @override 7 | Widget build(BuildContext context) { 8 | return MaterialApp( 9 | title: 'Welcome to Flutter', 10 | home: Scaffold( 11 | appBar: AppBar( 12 | title: Text('Welcome to Flutter'), 13 | ), 14 | body: Center( 15 | child: Text('Hello World'), 16 | ), 17 | ), 18 | ); 19 | } 20 | } -------------------------------------------------------------------------------- /Deno/README.md: -------------------------------------------------------------------------------- 1 | # Deno 2 | 3 | Deno is a runtime for JavaScript, TypeScript, and WebAssembly that is based on the V8 JavaScript engine and the Rust programming language. Deno was co-created by Ryan Dahl, who also created Node.js. 4 | 5 | Deno explicitly takes on the role of both runtime and package manager within a single executable, rather than requiring a separate package-management program. 6 | 7 | # Refrences 8 | 9 | [deno.land](https://deno.land/) 10 | [Wikipedia](https://en.wikipedia.org/wiki/Deno_(software)) -------------------------------------------------------------------------------- /Python/examples/cheatsheets/recursion.py: -------------------------------------------------------------------------------- 1 | # The process in which a function calls itself directly or indirectly is called recursion. 2 | # Here is a Good example for Recursion in Python.. 3 | # This Recursion makes factorial-finding efficient compared to other methods using loops. 4 | 5 | def factorial(n): 6 | if n < 0 : 7 | return 'try non-negative integer' 8 | elif n == 0 : 9 | return 1 10 | else: 11 | return n * factorial(n-1) 12 | 13 | n = int(input()) 14 | print(factorial(n)) 15 | -------------------------------------------------------------------------------- /Befunge/README.md: -------------------------------------------------------------------------------- 1 | # Befunge 2 | 3 | Befunge is a stack-based, reflective, esoteric programming language. It differs from conventional languages in that programs are arranged on a two-dimensional grid. "Arrow" instructions direct the control flow to the left, right, up or down, and loops are constructed by sending the control flow in a cycle. It has been described as "a cross between Forth and Lemmings". 4 | 5 | ## Refrences 6 | 7 | 8 | - [Wikipedia](https://en.wikipedia.org/wiki/Befunge) 9 | - [Esolangs](https://esolangs.org/wiki/Befunge) -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/34-collections-operators-2.dart: -------------------------------------------------------------------------------- 1 | // Collections | For 2 | 3 | void main() { 4 | // Set a extra list 5 | var exCities = ['London', 'Texas']; 6 | 7 | // Add exCities to cities | Way 1 8 | var cities1 = [ 9 | 'Dubay', 10 | 'Berlin', 11 | 'Tokyo', 12 | ]; 13 | 14 | cities1.addAll(exCities); 15 | 16 | // Add exCities to cities | Collection-for 17 | var cities2 = [ 18 | 'Dubay', 19 | 'Berlin', 20 | 'Tokyo', 21 | for (var city in exCities) city, 22 | ]; 23 | } 24 | -------------------------------------------------------------------------------- /Php/README.md: -------------------------------------------------------------------------------- 1 | # The PHP Programming language 2 | PHP is a general-purpose scripting language especially suited to web development. 3 | It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1994. 4 | The PHP reference implementation is now produced by The PHP Group. PHP originally stood for Personal Home Page, 5 | but it now stands for the recursive initialism PHP: Hypertext Preprocessor. 6 | 7 | ## Refrences 8 | 9 | - [Wikipedia](https://en.wikipedia.org/wiki/PHP) 10 | - [php.net](https://php.net) 11 | 12 | -------------------------------------------------------------------------------- /Python/README.md: -------------------------------------------------------------------------------- 1 | # python 2 | 3 | 4 | 5 | 6 | ## variable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | ## refrence 15 | 16 | 17 | 18 | 19 | 20 | 21 | ## garbage 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Bash/README.md: -------------------------------------------------------------------------------- 1 | # Bash 2 | 3 | Bash is a Unix shell and command language written by Brian Fox for the GNU Project as a free software replacement for the Bourne shell. First released in 1989, it has been used as the default login shell for most Linux distributions. A version is also available for Windows 10 via the Windows Subsystem for Linux. It is also the default user shell in Solaris 11. Bash also was the default shell in all versions of Apple macOS prior to 2019. 4 | 5 | ## Refrences 6 | 7 | 8 | - [Wikipedia](https://en.wikipedia.org/wiki/Bash_(Unix_shell)) -------------------------------------------------------------------------------- /Scala/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Scala 2 | 3 | - [Functional Programming Principles in Scala](https://www.coursera.org/learn/progfun1) 4 | - Functions & Evaluation 5 | - Higher Order Functions 6 | - Data and Abstraction 7 | - Types and Pattern Matching 8 | - Lists 9 | - Collections 10 | - [Functional Program Design in Scala](https://www.coursera.org/learn/progfun2) 11 | - For Expressions and Monads 12 | - Lazy Evaluation 13 | - Type-Directed Programming 14 | - Functions and State 15 | - Timely Effects -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/08-operators-2.dart: -------------------------------------------------------------------------------- 1 | // Operators | Part 2 2 | 3 | void main() { 4 | // += | x = x + n 5 | int a = 1; 6 | a += 1; // a = a + 1 7 | 8 | // -= | x = x - n 9 | int b = 100; 10 | b -= 1; // b = b + 1 11 | 12 | // *= | x = x * n 13 | int c = 1; 14 | c *= 1; // c = c + 1 15 | 16 | // /= | x = x + n 17 | double d = 1; 18 | d /= 2; // d = d + 1 19 | 20 | // ~/= | x = x ~/ n 21 | double e = 50; 22 | a ~/= 1; // e = e ~/ 1 23 | 24 | // %= | x = x + n 25 | int f = 1; 26 | f %= 1; // f = f % 1 27 | } 28 | -------------------------------------------------------------------------------- /Csharp/examples/CSharp.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorld 4 | { 5 | class Program 6 | { 7 | static void Main(string[] args) 8 | { 9 | Console.WriteLine("Hello World!"); 10 | /*System.Console.WriteLine("Hello World!"); 11 | can be used if you don't set up 12 | 'using System;' at top of file*/ 13 | 14 | // Include this line to keep the console from closing right after printing "Hello World!" 15 | Console.ReadLine(); 16 | } 17 | } 18 | } 19 | 20 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/35-collections-operators-3.dart: -------------------------------------------------------------------------------- 1 | // Collections | Spreads 2 | 3 | void main() { 4 | // Set a extra list 5 | var exCountries = ['London', 'Texas']; 6 | 7 | // Add exCountries to countries1 | Way 1 - Collections for 8 | var countries1 = [ 9 | 'Dubay', 10 | 'Berlin', 11 | 'Tokyo', 12 | for (var city in exCountries) city, 13 | ]; 14 | 15 | // Add exCountries to countries2 | Way 2 - Spreads 16 | var countries2 = [ 17 | 'Dubay', 18 | 'Berlin', 19 | 'Tokyo', 20 | ...exCountries, 21 | ]; 22 | } 23 | -------------------------------------------------------------------------------- /Small-Basic/README.md: -------------------------------------------------------------------------------- 1 | # Small Basic 2 | 3 | Small Basic is the only programming language created specially to help students transition from block-based coding to text-based coding. By teaching the fundamental elements of syntax-based languages in an approachable manner, Small Basic gives students the skills and confidence to tackle more complex programming languages such as Java and C#. You can also build applications for Kinect, Lego Mindstorm, Raspberry Pi, Arduino, Oculus Rift, and more using Small Basic. 4 | 5 | # Refrences 6 | 7 | - [Small Basic Official Site](http://www.smallbasic.com/) 8 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/28-lists-3.dart: -------------------------------------------------------------------------------- 1 | // Lists | Part 3 2 | 3 | void main() { 4 | // When we use var, we can add all data types 5 | var names = ["Amir", "Ana", "Ali", "Nilo"]; 6 | 7 | // Also we can create the list with List 8 | List apple = ['iPhone', 'iMac', 'iCloud']; 9 | 10 | // Limit the list to contain Strings 11 | List cities = ['Tehan', 'Ankara', 'Frankfort']; 12 | 13 | // We can limit items type also with var 14 | var linux = ['Manjar', 'Ubuntu', 'Fedora', 'Solus']; 15 | 16 | // Remember 17 | // We use <> to add spesefic data type 18 | } 19 | -------------------------------------------------------------------------------- /Python/examples/cheatsheets/http_requests.py: -------------------------------------------------------------------------------- 1 | from requests import get, post 2 | 3 | # Send "get" http requests: 4 | res = get("http://www.google.com") 5 | 6 | # Check, page is loaded or not: 7 | if res.status_code == 404 or is not 200: 8 | print("You have an error to load page!") 9 | else: 10 | print("GET requests sent successfuly!") 11 | 12 | # You can access response test 13 | code = res.text 14 | print(code) 15 | 16 | # Post requests: 17 | URL = "Your site address" 18 | data = [{ 19 | key: value 20 | }] 21 | req_post = post(URL, data) 22 | 23 | # As you can check again loading 24 | -------------------------------------------------------------------------------- /Rust/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Rust 2 | - [The Rust Programming Language online Book](https://doc.rust-lang.org/book/) - 🌍 En 3 | - [Programming Rust: Fast, Safe Systems Development](https://www.amazon.com/Programming-Rust-Fast-Systems-Development/dp/1492052590/ref=sr_1_2?keywords=rust&qid=1639822427&sr=8-2) 4 | - [Rust in Action](https://www.amazon.com/Rust-Action-TS-McNamara/dp/1617294551/ref=sr_1_5?keywords=rust&qid=1639822427&sr=8-5) 5 | - [The Rust Programming Language (Covers Rust 2018)](https://www.amazon.com/Rust-Programming-Language-Covers-2018/dp/1718500440/ref=sr_1_7?keywords=rust&qid=1639822427&sr=8-7) 6 | -------------------------------------------------------------------------------- /Typescript/examples/Express.ts: -------------------------------------------------------------------------------- 1 | // first install express for typescript with this command: 2 | // `npm install @types/express` 3 | import express from "express"; 4 | 5 | // create app and a port 6 | const app = express(); 7 | const port = 3000; 8 | 9 | // make a very simple route with get method 10 | app.get('/', (req, resp): void => { 11 | // send a hello world to browser 12 | resp.send("Hello, World!"); 13 | }); 14 | 15 | // listen app in port 3000 16 | app.listen(port, () => { 17 | // whene app started log this on console 18 | console.log(`app is running in port ${port}`); 19 | }); 20 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/22-enum-1.dart: -------------------------------------------------------------------------------- 1 | // Enum 2 | 3 | // Define an Enum. First must be capital 4 | 5 | enum Medals { 6 | gold, 7 | silver, 8 | bronze, 9 | noMedal, 10 | } 11 | 12 | void main() { 13 | const stage = Medals.bronze; 14 | 15 | switch (stage) { 16 | case Medals.gold: 17 | print("Gold!"); 18 | break; 19 | case Medals.silver: 20 | print("Silver!"); 21 | break; 22 | case Medals.bronze: 23 | print("Bronze!"); 24 | break; 25 | case Medals.noMedal: 26 | print("Sorry, You are not in first 3 :("); 27 | break; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Batch/README.md: -------------------------------------------------------------------------------- 1 | # Batch 2 | 3 | A batch file is a script file in DOS, OS/2 and Microsoft Windows. It consists of a series of commands to be executed by the command-line interpreter, stored in a plain text file. A batch file may contain any command the interpreter accepts interactively and use constructs that enable conditional branching and looping within the batch file, such as IF, FOR, and GOTO labels. The term "batch" is from batch processing, meaning "non-interactive execution", though a batch file may not process a batch of multiple data. 4 | 5 | ## Refrences 6 | 7 | 8 | - [Wikipedia](https://en.wikipedia.org/wiki/Batch_file) -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/33-collections-operators-1.dart: -------------------------------------------------------------------------------- 1 | // Colloctions | If 2 | 3 | void main() { 4 | // Create a list with 2 ways 5 | 6 | var addAna = true; 7 | var addNilo = false; 8 | 9 | // Way 1 10 | var people = ['Amir', 'Ali', 'Erfan', 'Arsham']; 11 | 12 | if (addAna) { 13 | people.add("Ana"); 14 | } 15 | 16 | if (addNilo) { 17 | people.add("Nilo"); 18 | } 19 | 20 | // Way 2 | Collection-If 21 | var names = [ 22 | 'Amir', 23 | 'Ali', 24 | if (addAna) 'Ana', 25 | 'Erfan', 26 | if (addNilo) 'Nilo', 27 | 'Arsham', 28 | ]; 29 | 30 | print(names); 31 | } 32 | -------------------------------------------------------------------------------- /Assembly/examples/x86_assembly.asm: -------------------------------------------------------------------------------- 1 | section .text 2 | global _start 3 | _start: 4 | mov edx,len 5 | mov ecx,msg 6 | mov ebx,1 7 | mov eax,4 8 | int 0x80 9 | mov eax,1 10 | int 0x80 11 | section .data 12 | msg db 'Hello world',0xa 13 | len equ $ - msg 14 | 15 | ; how to run: 16 | ; 1. first install assemblers 17 | ; sudo apt install as31 nasm 18 | ; 2. assemble the program 19 | ; nasm -f elf64 x86_assembly.asm 20 | ; 3. link the object file into an executable file 21 | ; ld -s -o x86_assembly x86_assembly.o 22 | ; 4. execute it 23 | ; ./x86_assembly 24 | -------------------------------------------------------------------------------- /Go/examples/io.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "os" 5 | "fmt" 6 | "io" 7 | ) 8 | 9 | func main(){ 10 | // You are already familiar with the methods of working with stdout in Go, but you should know that stdout in Go is an io type that can be written to and read from. 11 | // Write directly 12 | os.Stdout.Write([]byte("Hello World!")) 13 | // Write string using ready-made methods in io 14 | io.WriteString(os.Stdout, "Hello World!") 15 | // Write using fmt 16 | fmt.Fprint(os.Stdout,"Hello World!") 17 | // You can also use the format feature 18 | fmt.Fprintf(os.Stdout, "%s", "Hello World") 19 | } 20 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/06-converts.dart: -------------------------------------------------------------------------------- 1 | // Convert variables 2 | 3 | void main() { 4 | // Int to String and Dobule 5 | int a = 50; 6 | 7 | // Int to String 8 | String a_string = a.toString(); // Convert Int to String 9 | double a_double = a.toDouble(); // Convert Int to Double 10 | 11 | // Double to Int and String 12 | double b = 3.14; 13 | 14 | int b_int = b.toInt(); 15 | String b_string = b.toString(); 16 | 17 | // String to Int and Double 18 | String c = "10"; 19 | 20 | int c_int = int.parse(c); // Convert String to Int 21 | double c_double = double.parse(c); // Convert String to Int 22 | } 23 | -------------------------------------------------------------------------------- /Php/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Php 2 | - [PHP Official Documentation](https://www.php.net/docs.php) 3 | - [Programming PHP by by Kevin Tatro and Peter MacIntyre](https://www.bokus.com/bok/9781449392772/programming-php-creating-dynamic-web-pages-3rd-edition/) 4 | - [Mastering PHP 7 by Branko Ajzele](https://www.amazon.com/Mastering-PHP-configure-professional-applications-ebook/dp/B01LXKOIC2) 5 | - [Mastering PHP Design Patterns by Junade Ali](https://www.amazon.com/Mastering-PHP-Design-Patterns-Junade/dp/1785887130) 6 | - [Learning PHP Design Patterns by William Sanders](https://www.amazon.com/Learning-Design-Patterns-William-Sanders/dp/1449344917) 7 | -------------------------------------------------------------------------------- /Arduino/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Arduino 2 | - [Programming Arduino: Getting Started with Sketches](https://www.amazon.com/Programming-Arduino-Getting-Started-Sketches-ebook-dp-B01FJ24SZG/dp/B01FJ24SZG/ref=mt_other?_encoding=UTF8&me=&qid=1639823018) 3 | - [Arduino Cookbook: Recipes to Begin, Expand, and Enhance Your Projects](https://www.amazon.com/Arduino-Cookbook-Recipes-Enhance-Projects/dp/149190352X/ref=sr_1_3?keywords=Arduino+book&qid=1639823018&sr=8-3) 4 | - [Arduino Workshop: A Hands-On Introduction with 65 Projects](https://www.amazon.com/Arduino-Workshop-Hands-Introduction-Projects/dp/1593274483/ref=sr_1_7?keywords=Arduino+book&qid=1639823018&sr=8-7) -------------------------------------------------------------------------------- /Pine-Script/examples/PineScript.pine: -------------------------------------------------------------------------------- 1 | 2 | //@version=5 3 | // # ========================================================================= # 4 | // # | Indicator | 5 | // # ========================================================================= # 6 | indicator( 7 | title = "Hello World", 8 | overlay = true, 9 | ) 10 | // # ========================================================================= # 11 | // # | Indicator | 12 | // # ========================================================================= # 13 | plotshape(barstate.islast, text="Hell World") 14 | 15 | 16 | -------------------------------------------------------------------------------- /Angular.js/README.md: -------------------------------------------------------------------------------- 1 | # Angular.js 2 | 3 | AngularJS is a JavaScript-based open-source front-end web framework for developing single-page applications. 4 | It is maintained mainly by Google and a community of individuals and corporations. 5 | It aims to simplify both the development and the testing of such applications by providing a framework for client-side model–view–controller (MVC) and model–view–viewmodel (MVVM) architectures, along with components commonly used in web applications and progressive web applications. 6 | 7 | 8 | 9 | ## Refrences 10 | 11 | 12 | - [Wikipedia](https://en.wikipedia.org/wiki/AngularJS) 13 | - [Official Web](https://angularjs.org) 14 | -------------------------------------------------------------------------------- /Julia/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Julia 2 | 3 | - [Think Julia: How to Think Like a Computer Scientist 1st Edition](https://www.amazon.com/Think-Julia-Like-Computer-Scientist/dp/1492045039/ref=sr_1_3?keywords=Julia+Programming&qid=1656788351&sr=8-3) 4 | - [Julia 1.0 Programming Complete Reference Guide](https://www.amazon.com/Julia-Programming-Complete-Reference-Guide/dp/1838822240/ref=sr_1_1_sspa?keywords=Julia+Programming&qid=1656788351&sr=8-1-spons&psc=1&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUEzSjYyV1BIOFUwUzVMJmVuY3J5cHRlZElkPUEwMzY1MDQzMk1FMFBWMFVVTVg3RiZlbmNyeXB0ZWRBZElkPUEwMzc1NjY0MjUyVTZBSVI4NUFJSyZ3aWRnZXROYW1lPXNwX2F0ZiZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU=) 5 | -------------------------------------------------------------------------------- /VB/README.md: -------------------------------------------------------------------------------- 1 | # VB 2 | Visual Basic is a third-generation event-driven programming language from Microsoft known for its Component Object Model (COM) 3 | programming model first released in 1991 and declared legacy during 2008. Microsoft intended Visual Basic to be relatively 4 | easy to learn and use. Visual Basic was derived from BASIC and enables the rapid application development (RAD) 5 | of graphical user interface (GUI) applications, access to databases using Data Access Objects, Remote Data Objects, 6 | or ActiveX Data Objects, and creation of ActiveX controls and objects. 7 | 8 | ## References 9 | 10 | - [Wikipedia](https://en.wikipedia.org/wiki/Visual_Basic) 11 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/03-strings-1.dart: -------------------------------------------------------------------------------- 1 | // Strings 2 | 3 | void main() { 4 | // print('Now I'm feeling great!'); This is wrong. We use same qoute in a center of it 5 | print('Now I\'m feeling good!'); // Now it is solved. Use \ before qoute. 6 | print("Now I'm feeling good!"); // This is way no. 2. 7 | 8 | // Special charectors 9 | print("\\"); // Output is \ 10 | print("\$"); // Output is $ 11 | 12 | // print("Dir is: \home\user\Downloads"); This is wrong. 13 | print("Dir is: \\home\\user\\Downloads"); // Now it prints \ 14 | 15 | // Print with out details of special chars 16 | print(r"The home worth $1500000."); // Now, $ is not as a variable 17 | } 18 | -------------------------------------------------------------------------------- /Basic/README.md: -------------------------------------------------------------------------------- 1 | # Basic 2 | 3 | BASIC (Beginners' All-purpose Symbolic Instruction Code) is a family of general-purpose, high-level programming languages whose design philosophy emphasizes ease of use. The original version was designed by John G. Kemeny and Thomas E. Kurtz and released at Dartmouth College in 1964. They wanted to enable students in fields other than science and mathematics to use computers. At the time, nearly all use of computers required writing custom software, which was something only scientists and mathematicians tended to learn. 4 | 5 | ## Refrences 6 | 7 | 8 | - [Wikipedia](https://en.wikipedia.org/wiki/BASIC) 9 | - [Britannica](https://www.britannica.com/technology/BASIC) -------------------------------------------------------------------------------- /Brainfuck/README.md: -------------------------------------------------------------------------------- 1 | # Brainfuck 2 | 3 | Brainfuck is an esoteric programming language created in 1993 by Urban Müller.[1] 4 | 5 | Notable for its extreme minimalism, the language consists of only eight simple commands and an instruction pointer. While it is fully Turing complete, it is not intended for practical use, but to challenge and amuse programmers. Brainfuck simply requires one to break commands into microscopic steps. 6 | 7 | The language's name is a reference to the slang term brainfuck, which refers to things so complicated or unusual that they exceed the limits of one's understanding. 8 | 9 | # Refrences 10 | 11 | 12 | [Wikipedia](https://en.wikipedia.org/wiki/Brainfuck) -------------------------------------------------------------------------------- /Ruby/examples/04-arrays.rb: -------------------------------------------------------------------------------- 1 | # Ruby cheatsheet number 4 2 | # Arrays | 1 3 | 4 | # Create just a list 5 | names = [ "Amir", "Fatemeh", "Mohammad", "Ali" ] 6 | 7 | # For loop in a list 8 | names.each do | name | 9 | # Print name 10 | puts name 11 | end 12 | 13 | puts "- - - - -" 14 | 15 | # Create a JSON array 16 | person = { 17 | "name" => "Amir", 18 | "age" => 19, 19 | "born" => "Nov 20 2003", 20 | "city" => "Tehran", 21 | } 22 | 23 | # For loop in person with key and value 24 | person.each do |key, value| 25 | # Print key and value 26 | puts "#{key} is #{value}" 27 | end 28 | 29 | puts "- - - - -" 30 | 31 | (0..10).each do |i| 32 | puts "Running for #{i} time" 33 | end -------------------------------------------------------------------------------- /Cobra/README.md: -------------------------------------------------------------------------------- 1 | # Cobra 2 | 3 | Cobra is a discontinued general-purpose, object-oriented programming language. Cobra is designed by Charles Esterbrook, and runs on the Microsoft .NET and Mono platforms. It is strongly influenced by Python, C#, Eiffel, Objective-C, and other programming languages. It supports both static and dynamic typing. It has support for unit tests and contracts. It has lambda expressions, closures, list comprehensions, and generators. 4 | 5 | Cobra is an open-source project; it was released under the MIT License on February 29, 2008. 6 | 7 | ## Refrences 8 | 9 | - [Cobra](http://cobra-language.com) 10 | - [Wikipedia](https://en.wikipedia.org/wiki/Cobra_(programming_language)) --------------------------------------------------------------------------------