├── .gitignore ├── FP └── README.md ├── LICENSE ├── Pascal ├── .gitignore ├── CaesarCipher.pas ├── Counter.pas ├── DateConverter.pas ├── DividableByThree.pas ├── EvenOrOdd.pas ├── FahrenheitToCelsius.pas ├── Falgir.pas ├── Loan.pas ├── Mosallas.pas ├── MultplicationTable.pas ├── README.md ├── RSA_Algorithm.pas ├── SumAndCounter.pas ├── manzume_shamsi.pas ├── rsasezar9.PAS ├── smart decoding.pas └── snake.pas ├── README.md ├── SQL └── README.md ├── bash └── README.md ├── elixir └── README.md ├── go ├── README.md ├── go-by-example │ ├── constants.go │ ├── for.go │ ├── hello-world.go │ ├── if.go │ ├── switch.go │ ├── value.go │ └── variables.go └── stack │ ├── go.mod │ ├── stack.go │ └── stack_test.go ├── haskell ├── 1-lambda │ └── README.md ├── 10-fold │ ├── README.md │ ├── exercise.hs │ ├── finalExercises.hs │ └── scan.hs ├── 2-hello │ ├── FunctionalWithLet.hs │ ├── FunctionalWithWhere.hs │ ├── L2.hs │ ├── Learn.hs │ ├── LetWhere.hs │ ├── README.md │ ├── WithFunction.hs │ ├── test.hs │ └── tripler.hs ├── 3-string │ ├── All.hs │ ├── Area.hs │ ├── Print1.hs │ ├── Print2.hs │ ├── Print3.hs │ ├── README.md │ ├── Tamrin.hs │ ├── TopOrLocal.hs │ └── headTail.hs ├── 4-dataTypes │ ├── Bool.hs │ ├── Boool.hs │ ├── GreetIfCool1.hs │ ├── GreetIfCool2.hs │ ├── If.hs │ ├── Lists.hs │ ├── Mood.hs │ ├── README.md │ ├── Tam.hs │ └── Tuples.hs ├── 5-types │ ├── README.md │ ├── a.hs │ └── dt.hs ├── 6-typeclass │ ├── eeq.hs │ └── matchTypes.hs ├── 7-8-func-recursive │ ├── 7.hs │ ├── a.hs │ └── t.hs ├── 9-list │ ├── Chiper.hs │ ├── enum.hs │ ├── filt.hs │ ├── impl.hs │ └── zip.hs ├── 99questions │ ├── 10.hs │ ├── 11.hs │ ├── 12.hs │ ├── 14.hs │ ├── 15.hs │ ├── 16.hs │ ├── 8.hs │ └── 9.hs ├── README.md ├── codewars │ └── powerset │ │ └── a.hs ├── dr-lazy │ └── live.hs ├── failed-tries │ ├── README.md │ ├── a.hs │ ├── double.hs │ ├── main.hs │ └── prime.hs └── google-haskell │ ├── haskell_101 │ ├── BUILD │ ├── Codelab.hs │ ├── Dockerfile │ ├── Main.hs │ ├── Makefile │ ├── README.md │ ├── Solution.hs │ └── docker-compose.yml │ └── haskell_102 │ ├── BUILD │ ├── Codelab.hs │ ├── Dockerfile │ ├── Game.hs │ ├── Main.hs │ ├── Makefile │ ├── Mastermind.png │ ├── README.md │ ├── Solution.hs │ ├── Tests.hs │ └── docker-compose.yml ├── lisp ├── README.md └── a.lisp ├── lua └── README.md ├── make └── README.md ├── python ├── README.md ├── basics │ ├── for.py │ └── while.py ├── binary_ascii │ ├── B2T.py │ ├── README.md │ └── T2B.py ├── calculate_pi.py ├── cesar_decode │ ├── README.md │ └── coding.py ├── classes_in_py │ ├── OOP - Point1 .py │ ├── OOP - point 2.py │ ├── a 10X10 list filled by random numbers and sum of per row.py │ ├── check kardane tas.py │ ├── counts the number of times a letter appears in a string.py │ ├── distance from center.py │ ├── index of char in str.py │ ├── my-oop.py │ └── perimeter and area of a circle.py ├── fal_hafez │ ├── README.md │ └── fal_hafez.py ├── flask │ ├── 1-hello.py │ ├── 10-json.py │ ├── 11-auth.py │ ├── 12-full_api.py │ ├── 13-my-api.py │ ├── 2-route.py │ ├── 3-url_rule_route.py │ ├── 4-variable-rules.py │ ├── 5-more_play_with_variable_rules.py │ ├── 6-url-binding.py │ ├── 7-post.html │ ├── 7-post.py │ ├── 8-session.py │ ├── 9-upload.html │ ├── 9-upload.py │ ├── README.md │ └── uploads │ │ └── toInstall.txt ├── hash.py ├── jadi-money_move │ ├── README.md │ ├── history.py │ └── money.py ├── pyexcel │ ├── README.md │ ├── excel - calculate min max ave.py │ ├── excel - generate students.py │ ├── excel - report.py │ ├── excel - sort students.py │ └── text to excel.py ├── random_name_gen │ ├── lnames.txt │ ├── names.txt │ ├── rand_student.py │ └── rand_student_thomas.py ├── rsb │ ├── README.md │ └── rsb1.py └── singleton │ └── s.py ├── rust ├── 1-guesing-game │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── README.md └── wordle-best-words │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ └── main.rs ├── scala ├── README.md ├── basic-syntax │ └── Hello.scala └── hello-world-template │ ├── build.sbt │ ├── project │ └── build.properties │ └── src │ └── main │ └── scala │ └── Main.scala ├── system-verilog ├── arch-4-1.md └── images │ ├── CAD-steps.jpg │ ├── bit-man.png │ ├── bitwise.png │ ├── delay-all.png │ ├── delay1.png │ ├── delay2.png │ ├── delay3.png │ ├── delay4.png │ ├── example-synthesis.png │ ├── gate-level-netlist-of-post-synthesized.png │ ├── internal-var.png │ ├── mux2_8.png │ ├── numbers.png │ ├── precedence.png │ ├── schematic.gif │ └── simulation.png ├── verilog ├── .gitignore ├── README.md ├── example │ ├── counter │ │ ├── counter4bit.v │ │ └── counter4bit_tb.v │ └── dec3to8 │ │ ├── dec3to8.v │ │ ├── dec3to8_2.v │ │ └── dec3to8_tb.v ├── makefile ├── problem1 │ ├── Sharifnasab.Roozbeh.97243093.Problem1.Module.v │ ├── Sharifnasab.Roozbeh.97243093.Problem1.Testbench.v │ ├── gozaresh.odt │ └── problem1-gate │ │ ├── gate.Problem1.Module.v │ │ └── gate.Problem1.Testbench.v ├── problem2 │ ├── Sharifnasab.Roozbeh.97243093.Problem2.Module.v │ ├── Sharifnasab.Roozbeh.97243093.Problem2.Testbench.v │ └── gozaresh.odt ├── problem3 │ ├── Sharifnasab.Roozbeh.97243093.Problem3.Module.v │ ├── Sharifnasab.Roozbeh.97243093.Problem3.Testbench.v │ └── gozaresh.odt ├── problem4 │ ├── Sharifnasab.Roozbeh.97243093.Problem4.Module.v │ └── Sharifnasab.Roozbeh.97243093.Problem4.Testbench.v └── todo.pdf ├── vhdl ├── README.md ├── project1 │ ├── README.md │ ├── script.do │ ├── shift_register.vhd │ └── todo.pdf ├── project2 │ ├── alu.vhd │ ├── alu_tb.vhd │ ├── run.bat │ ├── script.do │ └── todo.pdf ├── project3 │ ├── model-v2.jpg │ ├── multiplier.vhd │ ├── multiplier_tb.vhd │ ├── script.do │ └── todo.doc ├── project4 │ ├── barrel_shifter.vhd │ ├── barrel_shifter_tb.vhd │ ├── script.do │ └── todo.pdf ├── project5 │ ├── elev_control.vhd │ ├── elev_control_tb.vhd │ ├── run.bat │ ├── sc.png │ ├── script.do │ └── todo.pdf └── project6 │ ├── run.bat │ ├── script.do │ ├── todo.pdf │ ├── uart.vhd │ └── uart_tb.vhd └── vim └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/.gitignore -------------------------------------------------------------------------------- /FP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/FP/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/LICENSE -------------------------------------------------------------------------------- /Pascal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/.gitignore -------------------------------------------------------------------------------- /Pascal/CaesarCipher.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/CaesarCipher.pas -------------------------------------------------------------------------------- /Pascal/Counter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/Counter.pas -------------------------------------------------------------------------------- /Pascal/DateConverter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/DateConverter.pas -------------------------------------------------------------------------------- /Pascal/DividableByThree.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/DividableByThree.pas -------------------------------------------------------------------------------- /Pascal/EvenOrOdd.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/EvenOrOdd.pas -------------------------------------------------------------------------------- /Pascal/FahrenheitToCelsius.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/FahrenheitToCelsius.pas -------------------------------------------------------------------------------- /Pascal/Falgir.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/Falgir.pas -------------------------------------------------------------------------------- /Pascal/Loan.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/Loan.pas -------------------------------------------------------------------------------- /Pascal/Mosallas.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/Mosallas.pas -------------------------------------------------------------------------------- /Pascal/MultplicationTable.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/MultplicationTable.pas -------------------------------------------------------------------------------- /Pascal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/README.md -------------------------------------------------------------------------------- /Pascal/RSA_Algorithm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/RSA_Algorithm.pas -------------------------------------------------------------------------------- /Pascal/SumAndCounter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/SumAndCounter.pas -------------------------------------------------------------------------------- /Pascal/manzume_shamsi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/manzume_shamsi.pas -------------------------------------------------------------------------------- /Pascal/rsasezar9.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/rsasezar9.PAS -------------------------------------------------------------------------------- /Pascal/smart decoding.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/smart decoding.pas -------------------------------------------------------------------------------- /Pascal/snake.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/Pascal/snake.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/README.md -------------------------------------------------------------------------------- /SQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/SQL/README.md -------------------------------------------------------------------------------- /bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/bash/README.md -------------------------------------------------------------------------------- /elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/elixir/README.md -------------------------------------------------------------------------------- /go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/README.md -------------------------------------------------------------------------------- /go/go-by-example/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/go-by-example/constants.go -------------------------------------------------------------------------------- /go/go-by-example/for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/go-by-example/for.go -------------------------------------------------------------------------------- /go/go-by-example/hello-world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/go-by-example/hello-world.go -------------------------------------------------------------------------------- /go/go-by-example/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/go-by-example/if.go -------------------------------------------------------------------------------- /go/go-by-example/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/go-by-example/switch.go -------------------------------------------------------------------------------- /go/go-by-example/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/go-by-example/value.go -------------------------------------------------------------------------------- /go/go-by-example/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/go-by-example/variables.go -------------------------------------------------------------------------------- /go/stack/go.mod: -------------------------------------------------------------------------------- 1 | module stack-impl 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /go/stack/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/stack/stack.go -------------------------------------------------------------------------------- /go/stack/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/go/stack/stack_test.go -------------------------------------------------------------------------------- /haskell/1-lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/1-lambda/README.md -------------------------------------------------------------------------------- /haskell/10-fold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/10-fold/README.md -------------------------------------------------------------------------------- /haskell/10-fold/exercise.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/10-fold/exercise.hs -------------------------------------------------------------------------------- /haskell/10-fold/finalExercises.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/10-fold/finalExercises.hs -------------------------------------------------------------------------------- /haskell/10-fold/scan.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/10-fold/scan.hs -------------------------------------------------------------------------------- /haskell/2-hello/FunctionalWithLet.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/2-hello/FunctionalWithLet.hs -------------------------------------------------------------------------------- /haskell/2-hello/FunctionalWithWhere.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/2-hello/FunctionalWithWhere.hs -------------------------------------------------------------------------------- /haskell/2-hello/L2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/2-hello/L2.hs -------------------------------------------------------------------------------- /haskell/2-hello/Learn.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/2-hello/Learn.hs -------------------------------------------------------------------------------- /haskell/2-hello/LetWhere.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/2-hello/LetWhere.hs -------------------------------------------------------------------------------- /haskell/2-hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/2-hello/README.md -------------------------------------------------------------------------------- /haskell/2-hello/WithFunction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/2-hello/WithFunction.hs -------------------------------------------------------------------------------- /haskell/2-hello/test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/2-hello/test.hs -------------------------------------------------------------------------------- /haskell/2-hello/tripler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/2-hello/tripler.hs -------------------------------------------------------------------------------- /haskell/3-string/All.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/3-string/All.hs -------------------------------------------------------------------------------- /haskell/3-string/Area.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/3-string/Area.hs -------------------------------------------------------------------------------- /haskell/3-string/Print1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/3-string/Print1.hs -------------------------------------------------------------------------------- /haskell/3-string/Print2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/3-string/Print2.hs -------------------------------------------------------------------------------- /haskell/3-string/Print3.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/3-string/Print3.hs -------------------------------------------------------------------------------- /haskell/3-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/3-string/README.md -------------------------------------------------------------------------------- /haskell/3-string/Tamrin.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/3-string/Tamrin.hs -------------------------------------------------------------------------------- /haskell/3-string/TopOrLocal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/3-string/TopOrLocal.hs -------------------------------------------------------------------------------- /haskell/3-string/headTail.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/3-string/headTail.hs -------------------------------------------------------------------------------- /haskell/4-dataTypes/Bool.hs: -------------------------------------------------------------------------------- 1 | data BoolType = False | True 2 | -------------------------------------------------------------------------------- /haskell/4-dataTypes/Boool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/4-dataTypes/Boool.hs -------------------------------------------------------------------------------- /haskell/4-dataTypes/GreetIfCool1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/4-dataTypes/GreetIfCool1.hs -------------------------------------------------------------------------------- /haskell/4-dataTypes/GreetIfCool2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/4-dataTypes/GreetIfCool2.hs -------------------------------------------------------------------------------- /haskell/4-dataTypes/If.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/4-dataTypes/If.hs -------------------------------------------------------------------------------- /haskell/4-dataTypes/Lists.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/4-dataTypes/Lists.hs -------------------------------------------------------------------------------- /haskell/4-dataTypes/Mood.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/4-dataTypes/Mood.hs -------------------------------------------------------------------------------- /haskell/4-dataTypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/4-dataTypes/README.md -------------------------------------------------------------------------------- /haskell/4-dataTypes/Tam.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/4-dataTypes/Tam.hs -------------------------------------------------------------------------------- /haskell/4-dataTypes/Tuples.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/4-dataTypes/Tuples.hs -------------------------------------------------------------------------------- /haskell/5-types/README.md: -------------------------------------------------------------------------------- 1 | # chapter5 : types 2 | 3 | -------------------------------------------------------------------------------- /haskell/5-types/a.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/5-types/a.hs -------------------------------------------------------------------------------- /haskell/5-types/dt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/5-types/dt.hs -------------------------------------------------------------------------------- /haskell/6-typeclass/eeq.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/6-typeclass/eeq.hs -------------------------------------------------------------------------------- /haskell/6-typeclass/matchTypes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/6-typeclass/matchTypes.hs -------------------------------------------------------------------------------- /haskell/7-8-func-recursive/7.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/7-8-func-recursive/7.hs -------------------------------------------------------------------------------- /haskell/7-8-func-recursive/a.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/7-8-func-recursive/a.hs -------------------------------------------------------------------------------- /haskell/7-8-func-recursive/t.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/7-8-func-recursive/t.hs -------------------------------------------------------------------------------- /haskell/9-list/Chiper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/9-list/Chiper.hs -------------------------------------------------------------------------------- /haskell/9-list/enum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/9-list/enum.hs -------------------------------------------------------------------------------- /haskell/9-list/filt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/9-list/filt.hs -------------------------------------------------------------------------------- /haskell/9-list/impl.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/9-list/impl.hs -------------------------------------------------------------------------------- /haskell/9-list/zip.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/9-list/zip.hs -------------------------------------------------------------------------------- /haskell/99questions/10.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/99questions/10.hs -------------------------------------------------------------------------------- /haskell/99questions/11.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/99questions/11.hs -------------------------------------------------------------------------------- /haskell/99questions/12.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/99questions/12.hs -------------------------------------------------------------------------------- /haskell/99questions/14.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/99questions/14.hs -------------------------------------------------------------------------------- /haskell/99questions/15.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/99questions/15.hs -------------------------------------------------------------------------------- /haskell/99questions/16.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/99questions/16.hs -------------------------------------------------------------------------------- /haskell/99questions/8.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/99questions/8.hs -------------------------------------------------------------------------------- /haskell/99questions/9.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/99questions/9.hs -------------------------------------------------------------------------------- /haskell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/README.md -------------------------------------------------------------------------------- /haskell/codewars/powerset/a.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/codewars/powerset/a.hs -------------------------------------------------------------------------------- /haskell/dr-lazy/live.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/dr-lazy/live.hs -------------------------------------------------------------------------------- /haskell/failed-tries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/failed-tries/README.md -------------------------------------------------------------------------------- /haskell/failed-tries/a.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/failed-tries/a.hs -------------------------------------------------------------------------------- /haskell/failed-tries/double.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/failed-tries/double.hs -------------------------------------------------------------------------------- /haskell/failed-tries/main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/failed-tries/main.hs -------------------------------------------------------------------------------- /haskell/failed-tries/prime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/failed-tries/prime.hs -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_101/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_101/BUILD -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_101/Codelab.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_101/Codelab.hs -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_101/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_101/Dockerfile -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_101/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_101/Main.hs -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_101/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_101/Makefile -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_101/README.md -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_101/Solution.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_101/Solution.hs -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_101/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_101/docker-compose.yml -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/BUILD -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/Codelab.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/Codelab.hs -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/Dockerfile -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/Game.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/Game.hs -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/Main.hs -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/Makefile -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/Mastermind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/Mastermind.png -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/README.md -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/Solution.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/Solution.hs -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/Tests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/Tests.hs -------------------------------------------------------------------------------- /haskell/google-haskell/haskell_102/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/haskell/google-haskell/haskell_102/docker-compose.yml -------------------------------------------------------------------------------- /lisp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/lisp/README.md -------------------------------------------------------------------------------- /lisp/a.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/lisp/a.lisp -------------------------------------------------------------------------------- /lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/lua/README.md -------------------------------------------------------------------------------- /make/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/make/README.md -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/README.md -------------------------------------------------------------------------------- /python/basics/for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/basics/for.py -------------------------------------------------------------------------------- /python/basics/while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/basics/while.py -------------------------------------------------------------------------------- /python/binary_ascii/B2T.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/binary_ascii/B2T.py -------------------------------------------------------------------------------- /python/binary_ascii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/binary_ascii/README.md -------------------------------------------------------------------------------- /python/binary_ascii/T2B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/binary_ascii/T2B.py -------------------------------------------------------------------------------- /python/calculate_pi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/calculate_pi.py -------------------------------------------------------------------------------- /python/cesar_decode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/cesar_decode/README.md -------------------------------------------------------------------------------- /python/cesar_decode/coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/cesar_decode/coding.py -------------------------------------------------------------------------------- /python/classes_in_py/OOP - Point1 .py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/classes_in_py/OOP - Point1 .py -------------------------------------------------------------------------------- /python/classes_in_py/OOP - point 2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/classes_in_py/OOP - point 2.py -------------------------------------------------------------------------------- /python/classes_in_py/a 10X10 list filled by random numbers and sum of per row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/classes_in_py/a 10X10 list filled by random numbers and sum of per row.py -------------------------------------------------------------------------------- /python/classes_in_py/check kardane tas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/classes_in_py/check kardane tas.py -------------------------------------------------------------------------------- /python/classes_in_py/counts the number of times a letter appears in a string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/classes_in_py/counts the number of times a letter appears in a string.py -------------------------------------------------------------------------------- /python/classes_in_py/distance from center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/classes_in_py/distance from center.py -------------------------------------------------------------------------------- /python/classes_in_py/index of char in str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/classes_in_py/index of char in str.py -------------------------------------------------------------------------------- /python/classes_in_py/my-oop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/classes_in_py/my-oop.py -------------------------------------------------------------------------------- /python/classes_in_py/perimeter and area of a circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/classes_in_py/perimeter and area of a circle.py -------------------------------------------------------------------------------- /python/fal_hafez/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/fal_hafez/README.md -------------------------------------------------------------------------------- /python/fal_hafez/fal_hafez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/fal_hafez/fal_hafez.py -------------------------------------------------------------------------------- /python/flask/1-hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/1-hello.py -------------------------------------------------------------------------------- /python/flask/10-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/10-json.py -------------------------------------------------------------------------------- /python/flask/11-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/11-auth.py -------------------------------------------------------------------------------- /python/flask/12-full_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/12-full_api.py -------------------------------------------------------------------------------- /python/flask/13-my-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/13-my-api.py -------------------------------------------------------------------------------- /python/flask/2-route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/2-route.py -------------------------------------------------------------------------------- /python/flask/3-url_rule_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/3-url_rule_route.py -------------------------------------------------------------------------------- /python/flask/4-variable-rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/4-variable-rules.py -------------------------------------------------------------------------------- /python/flask/5-more_play_with_variable_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/5-more_play_with_variable_rules.py -------------------------------------------------------------------------------- /python/flask/6-url-binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/6-url-binding.py -------------------------------------------------------------------------------- /python/flask/7-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/7-post.html -------------------------------------------------------------------------------- /python/flask/7-post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/7-post.py -------------------------------------------------------------------------------- /python/flask/8-session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/8-session.py -------------------------------------------------------------------------------- /python/flask/9-upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/9-upload.html -------------------------------------------------------------------------------- /python/flask/9-upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/9-upload.py -------------------------------------------------------------------------------- /python/flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/flask/README.md -------------------------------------------------------------------------------- /python/flask/uploads/toInstall.txt: -------------------------------------------------------------------------------- 1 | ipman (for battry!) 2 | paint 3 | sdl 4 | 5 | -------------------------------------------------------------------------------- /python/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/hash.py -------------------------------------------------------------------------------- /python/jadi-money_move/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/jadi-money_move/README.md -------------------------------------------------------------------------------- /python/jadi-money_move/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/jadi-money_move/history.py -------------------------------------------------------------------------------- /python/jadi-money_move/money.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/jadi-money_move/money.py -------------------------------------------------------------------------------- /python/pyexcel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/pyexcel/README.md -------------------------------------------------------------------------------- /python/pyexcel/excel - calculate min max ave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/pyexcel/excel - calculate min max ave.py -------------------------------------------------------------------------------- /python/pyexcel/excel - generate students.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/pyexcel/excel - generate students.py -------------------------------------------------------------------------------- /python/pyexcel/excel - report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/pyexcel/excel - report.py -------------------------------------------------------------------------------- /python/pyexcel/excel - sort students.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/pyexcel/excel - sort students.py -------------------------------------------------------------------------------- /python/pyexcel/text to excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/pyexcel/text to excel.py -------------------------------------------------------------------------------- /python/random_name_gen/lnames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/random_name_gen/lnames.txt -------------------------------------------------------------------------------- /python/random_name_gen/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/random_name_gen/names.txt -------------------------------------------------------------------------------- /python/random_name_gen/rand_student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/random_name_gen/rand_student.py -------------------------------------------------------------------------------- /python/random_name_gen/rand_student_thomas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/random_name_gen/rand_student_thomas.py -------------------------------------------------------------------------------- /python/rsb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/rsb/README.md -------------------------------------------------------------------------------- /python/rsb/rsb1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/rsb/rsb1.py -------------------------------------------------------------------------------- /python/singleton/s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/python/singleton/s.py -------------------------------------------------------------------------------- /rust/1-guesing-game/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /rust/1-guesing-game/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/rust/1-guesing-game/Cargo.lock -------------------------------------------------------------------------------- /rust/1-guesing-game/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/rust/1-guesing-game/Cargo.toml -------------------------------------------------------------------------------- /rust/1-guesing-game/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/rust/1-guesing-game/src/main.rs -------------------------------------------------------------------------------- /rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/rust/README.md -------------------------------------------------------------------------------- /rust/wordle-best-words/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /rust/wordle-best-words/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/rust/wordle-best-words/Cargo.lock -------------------------------------------------------------------------------- /rust/wordle-best-words/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/rust/wordle-best-words/Cargo.toml -------------------------------------------------------------------------------- /rust/wordle-best-words/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/rust/wordle-best-words/src/main.rs -------------------------------------------------------------------------------- /scala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/scala/README.md -------------------------------------------------------------------------------- /scala/basic-syntax/Hello.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/scala/basic-syntax/Hello.scala -------------------------------------------------------------------------------- /scala/hello-world-template/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/scala/hello-world-template/build.sbt -------------------------------------------------------------------------------- /scala/hello-world-template/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.3.2 2 | -------------------------------------------------------------------------------- /scala/hello-world-template/src/main/scala/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/scala/hello-world-template/src/main/scala/Main.scala -------------------------------------------------------------------------------- /system-verilog/arch-4-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/arch-4-1.md -------------------------------------------------------------------------------- /system-verilog/images/CAD-steps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/CAD-steps.jpg -------------------------------------------------------------------------------- /system-verilog/images/bit-man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/bit-man.png -------------------------------------------------------------------------------- /system-verilog/images/bitwise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/bitwise.png -------------------------------------------------------------------------------- /system-verilog/images/delay-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/delay-all.png -------------------------------------------------------------------------------- /system-verilog/images/delay1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/delay1.png -------------------------------------------------------------------------------- /system-verilog/images/delay2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/delay2.png -------------------------------------------------------------------------------- /system-verilog/images/delay3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/delay3.png -------------------------------------------------------------------------------- /system-verilog/images/delay4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/delay4.png -------------------------------------------------------------------------------- /system-verilog/images/example-synthesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/example-synthesis.png -------------------------------------------------------------------------------- /system-verilog/images/gate-level-netlist-of-post-synthesized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/gate-level-netlist-of-post-synthesized.png -------------------------------------------------------------------------------- /system-verilog/images/internal-var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/internal-var.png -------------------------------------------------------------------------------- /system-verilog/images/mux2_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/mux2_8.png -------------------------------------------------------------------------------- /system-verilog/images/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/numbers.png -------------------------------------------------------------------------------- /system-verilog/images/precedence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/precedence.png -------------------------------------------------------------------------------- /system-verilog/images/schematic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/schematic.gif -------------------------------------------------------------------------------- /system-verilog/images/simulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/system-verilog/images/simulation.png -------------------------------------------------------------------------------- /verilog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/.gitignore -------------------------------------------------------------------------------- /verilog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/README.md -------------------------------------------------------------------------------- /verilog/example/counter/counter4bit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/example/counter/counter4bit.v -------------------------------------------------------------------------------- /verilog/example/counter/counter4bit_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/example/counter/counter4bit_tb.v -------------------------------------------------------------------------------- /verilog/example/dec3to8/dec3to8.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/example/dec3to8/dec3to8.v -------------------------------------------------------------------------------- /verilog/example/dec3to8/dec3to8_2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/example/dec3to8/dec3to8_2.v -------------------------------------------------------------------------------- /verilog/example/dec3to8/dec3to8_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/example/dec3to8/dec3to8_tb.v -------------------------------------------------------------------------------- /verilog/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/makefile -------------------------------------------------------------------------------- /verilog/problem1/Sharifnasab.Roozbeh.97243093.Problem1.Module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem1/Sharifnasab.Roozbeh.97243093.Problem1.Module.v -------------------------------------------------------------------------------- /verilog/problem1/Sharifnasab.Roozbeh.97243093.Problem1.Testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem1/Sharifnasab.Roozbeh.97243093.Problem1.Testbench.v -------------------------------------------------------------------------------- /verilog/problem1/gozaresh.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem1/gozaresh.odt -------------------------------------------------------------------------------- /verilog/problem1/problem1-gate/gate.Problem1.Module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem1/problem1-gate/gate.Problem1.Module.v -------------------------------------------------------------------------------- /verilog/problem1/problem1-gate/gate.Problem1.Testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem1/problem1-gate/gate.Problem1.Testbench.v -------------------------------------------------------------------------------- /verilog/problem2/Sharifnasab.Roozbeh.97243093.Problem2.Module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem2/Sharifnasab.Roozbeh.97243093.Problem2.Module.v -------------------------------------------------------------------------------- /verilog/problem2/Sharifnasab.Roozbeh.97243093.Problem2.Testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem2/Sharifnasab.Roozbeh.97243093.Problem2.Testbench.v -------------------------------------------------------------------------------- /verilog/problem2/gozaresh.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem2/gozaresh.odt -------------------------------------------------------------------------------- /verilog/problem3/Sharifnasab.Roozbeh.97243093.Problem3.Module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem3/Sharifnasab.Roozbeh.97243093.Problem3.Module.v -------------------------------------------------------------------------------- /verilog/problem3/Sharifnasab.Roozbeh.97243093.Problem3.Testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem3/Sharifnasab.Roozbeh.97243093.Problem3.Testbench.v -------------------------------------------------------------------------------- /verilog/problem3/gozaresh.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem3/gozaresh.odt -------------------------------------------------------------------------------- /verilog/problem4/Sharifnasab.Roozbeh.97243093.Problem4.Module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem4/Sharifnasab.Roozbeh.97243093.Problem4.Module.v -------------------------------------------------------------------------------- /verilog/problem4/Sharifnasab.Roozbeh.97243093.Problem4.Testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/problem4/Sharifnasab.Roozbeh.97243093.Problem4.Testbench.v -------------------------------------------------------------------------------- /verilog/todo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/verilog/todo.pdf -------------------------------------------------------------------------------- /vhdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/README.md -------------------------------------------------------------------------------- /vhdl/project1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project1/README.md -------------------------------------------------------------------------------- /vhdl/project1/script.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project1/script.do -------------------------------------------------------------------------------- /vhdl/project1/shift_register.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project1/shift_register.vhd -------------------------------------------------------------------------------- /vhdl/project1/todo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project1/todo.pdf -------------------------------------------------------------------------------- /vhdl/project2/alu.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project2/alu.vhd -------------------------------------------------------------------------------- /vhdl/project2/alu_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project2/alu_tb.vhd -------------------------------------------------------------------------------- /vhdl/project2/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project2/run.bat -------------------------------------------------------------------------------- /vhdl/project2/script.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project2/script.do -------------------------------------------------------------------------------- /vhdl/project2/todo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project2/todo.pdf -------------------------------------------------------------------------------- /vhdl/project3/model-v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project3/model-v2.jpg -------------------------------------------------------------------------------- /vhdl/project3/multiplier.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project3/multiplier.vhd -------------------------------------------------------------------------------- /vhdl/project3/multiplier_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project3/multiplier_tb.vhd -------------------------------------------------------------------------------- /vhdl/project3/script.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project3/script.do -------------------------------------------------------------------------------- /vhdl/project3/todo.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project3/todo.doc -------------------------------------------------------------------------------- /vhdl/project4/barrel_shifter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project4/barrel_shifter.vhd -------------------------------------------------------------------------------- /vhdl/project4/barrel_shifter_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project4/barrel_shifter_tb.vhd -------------------------------------------------------------------------------- /vhdl/project4/script.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project4/script.do -------------------------------------------------------------------------------- /vhdl/project4/todo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project4/todo.pdf -------------------------------------------------------------------------------- /vhdl/project5/elev_control.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project5/elev_control.vhd -------------------------------------------------------------------------------- /vhdl/project5/elev_control_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project5/elev_control_tb.vhd -------------------------------------------------------------------------------- /vhdl/project5/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project5/run.bat -------------------------------------------------------------------------------- /vhdl/project5/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project5/sc.png -------------------------------------------------------------------------------- /vhdl/project5/script.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project5/script.do -------------------------------------------------------------------------------- /vhdl/project5/todo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project5/todo.pdf -------------------------------------------------------------------------------- /vhdl/project6/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project6/run.bat -------------------------------------------------------------------------------- /vhdl/project6/script.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project6/script.do -------------------------------------------------------------------------------- /vhdl/project6/todo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project6/todo.pdf -------------------------------------------------------------------------------- /vhdl/project6/uart.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project6/uart.vhd -------------------------------------------------------------------------------- /vhdl/project6/uart_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vhdl/project6/uart_tb.vhd -------------------------------------------------------------------------------- /vim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsharifnasab/my-learning/HEAD/vim/README.md --------------------------------------------------------------------------------