├── .gitattributes ├── .gitignore ├── .gitmodules ├── CENG111 ├── THE2 │ ├── official_tests.zip │ ├── the2.py │ └── the2_description.pdf ├── THE3 │ ├── maker.py │ ├── official_tests.zip │ ├── tester.py │ ├── the3.py │ └── the3_description.pdf └── THE4 │ ├── grader.zip │ ├── the4.pdf │ └── the4.py ├── CENG140 ├── THE1 │ ├── Tester │ │ ├── README.md │ │ ├── Tester.tar │ │ ├── tester.py │ │ └── tests │ │ │ ├── 1_1.in │ │ │ ├── 1_1.out │ │ │ ├── 1_2.in │ │ │ ├── 1_2.out │ │ │ ├── 1_3.in │ │ │ ├── 1_3.out │ │ │ ├── 1_4.in │ │ │ ├── 1_4.out │ │ │ ├── 2_1.in │ │ │ ├── 2_1.out │ │ │ ├── 2_2.in │ │ │ ├── 2_2.out │ │ │ ├── 2_3.in │ │ │ ├── 2_3.out │ │ │ ├── 2_4.in │ │ │ ├── 2_4.out │ │ │ ├── 2_5.in │ │ │ └── 2_5.out │ ├── grader.zip │ ├── the1_iterative.c │ ├── the1_part2.c │ ├── the1_recursive.c │ └── the1_v2.pdf └── THE2 │ ├── Tester │ ├── README.md │ ├── Tester.tar │ ├── tester.py │ └── tests │ │ ├── Sample_1.in │ │ ├── Sample_1.out │ │ ├── Sample_2.in │ │ ├── Sample_2.out │ │ ├── Star_GORA.in │ │ ├── Star_GORA.out │ │ ├── The-X-Files.in │ │ ├── The-X-Files.out │ │ ├── ac1.in │ │ ├── ac1.out │ │ ├── ac2.in │ │ ├── ac2.out │ │ ├── ac3.in │ │ ├── ac3.out │ │ ├── ac4.in │ │ ├── ac4.out │ │ ├── ac5.in │ │ ├── ac5.out │ │ ├── ac6.in │ │ ├── ac6.out │ │ ├── ac7.in │ │ └── ac7.out │ ├── testIO.tar.gz │ ├── the2.c │ └── the2_v2.pdf ├── CENG213 ├── THE1 │ ├── 213_hw1_V1.pdf │ ├── 213_hw1_V2.pdf │ ├── evaluation_pack.zip │ ├── student_pack.zip │ ├── student_pack_V2.zip │ └── submission │ │ ├── LinkedList.hpp │ │ ├── Node.hpp │ │ ├── User.cpp │ │ ├── User.hpp │ │ ├── Video.cpp │ │ ├── Video.hpp │ │ ├── VideoShare.cpp │ │ └── VideoShare.hpp ├── THE2 │ ├── 213_hw2.pdf │ ├── evaluation_pack.zip │ ├── student_pack.zip │ └── submission │ │ ├── photo.cpp │ │ ├── photo.hpp │ │ ├── stock_photo_webstore.cpp │ │ ├── stock_photo_webstore.hpp │ │ └── tpbst.hpp └── THE3 │ ├── Sample_Mains.zip │ ├── hw3_v2.pdf │ └── submission │ ├── hw3.cpp │ └── hw3.h ├── CENG222 ├── HW1.pdf ├── HW2.pdf ├── HW3.pdf ├── HW4.pdf └── hw3.m ├── CENG232 ├── lab1 │ ├── hw1.pdf │ └── lab1.circ ├── lab2 │ ├── hw_2_2019.pdf │ ├── lab2.circ │ └── solution_and_grader │ │ ├── grader-hw2.properties │ │ ├── lab2.circ │ │ ├── lab2.gif │ │ ├── logisim-ceng232-20090616.jar │ │ └── run_single.sh ├── lab3 │ ├── Part 1 │ │ ├── hw3_part_1.gise │ │ ├── hw3_part_1.xise │ │ ├── lab3_1.v │ │ ├── testbench_df.v │ │ └── testbench_icplusplus.v │ ├── Part 2 │ │ ├── Board232.ucf │ │ ├── Board232.v │ │ ├── hw3_part_2.gise │ │ ├── hw3_part_2.xise │ │ └── lab3_2.v │ └── hw3.pdf ├── lab4 │ ├── hw4_V1.pdf │ ├── lab4_1.v │ └── lab4_1.xise └── logisim-ceng232-20090616.jar ├── CENG242 ├── HW1 │ ├── CENG242_HW1.pdf │ ├── HW1_testcases.txt │ └── Hw1.hs ├── HW2 │ ├── CENG242_HW2.pdf │ ├── HW2_testcases.hs │ ├── HW2_testcases.txt │ └── Hw2.hs ├── HW3 │ ├── Car.cpp │ ├── Car.h │ ├── Championship.cpp │ ├── Championship.h │ ├── Input_Output_Example.zip │ ├── Laptime.cpp │ ├── Laptime.h │ ├── PLHW3L.pdf │ ├── Race.cpp │ ├── Race.h │ └── Utilizer.h ├── HW4 │ ├── Archer.cpp │ ├── Archer.h │ ├── Board.cpp │ ├── Board.h │ ├── Fighter.cpp │ ├── Fighter.h │ ├── Game.cpp │ ├── Game.h │ ├── Homework4.pdf │ ├── InputParser.cpp │ ├── InputParser.h │ ├── Player.cpp │ ├── Player.h │ ├── Priest.cpp │ ├── Priest.h │ ├── SampleIO.zip │ ├── Scout.cpp │ ├── Scout.h │ ├── Tank.cpp │ └── Tank.h └── HW5 │ ├── Ceng242_Spring_18_19_HW5_v1.pdf │ ├── catoms.pl │ ├── hw5.pl │ └── hw5_grader.pl ├── CENG331 ├── Lab I - Bomb Lab │ ├── Bomblab.pdf │ ├── GDB_cheat_sheet.pdf │ ├── bomb457 │ │ ├── README │ │ ├── bomb │ │ ├── bomb.c │ │ ├── soln │ │ ├── strings │ │ └── table │ └── x64_cheat_sheet.pdf ├── Lab II - Attack Lab │ ├── AttackLab.pdf │ ├── handin-raw │ │ ├── raw-c1.txt │ │ ├── raw-c2.txt │ │ ├── raw-c3.txt │ │ └── raw-c4.txt │ ├── handin │ │ ├── ctarget.l1 │ │ ├── ctarget.l2 │ │ ├── ctarget.l3 │ │ └── rtarget.l2 │ └── target150 │ │ ├── README.txt │ │ ├── cookie.txt │ │ ├── cookie_array.c │ │ ├── ctarget │ │ ├── farm.c │ │ ├── hex2raw │ │ └── rtarget ├── Lab III - Architecture Lab │ ├── archlab-handout │ │ ├── Makefile │ │ ├── README │ │ ├── archlab.pdf │ │ ├── sim.tar │ │ └── simguide.pdf │ └── handin │ │ ├── copy.ys │ │ ├── ncopy.ys │ │ ├── pipe-full.hcl │ │ ├── rsum.ys │ │ ├── seq-full.hcl │ │ └── sum.ys └── Lab IV - Performance Lab │ ├── PerformanceHW.pdf │ ├── optimization.tar │ └── optimization │ ├── Makefile │ ├── README │ ├── clock.c │ ├── clock.h │ ├── config.h │ ├── defs.h │ ├── driver.c │ ├── fcyc.c │ ├── fcyc.h │ └── kernels.c ├── CENG334 ├── Homework 1 │ ├── Ceng334HW1_v1.1.pdf │ ├── HW1.tar.gz │ ├── execs.zip │ ├── extra.tar.gz │ ├── inputs.zip │ └── submission │ │ ├── bidder.cpp │ │ ├── bidder.hpp │ │ ├── logging.c │ │ ├── logging.h │ │ ├── makefile │ │ ├── message.h │ │ ├── methods.cpp │ │ ├── methods.hpp │ │ ├── server.cpp │ │ ├── utils.cpp │ │ └── utils.hpp ├── Homework 2 │ ├── Ceng334-Homework2_v1-2.pdf │ ├── correct_format.txt │ ├── inp.txt │ ├── monitor.h │ ├── out.txt │ ├── submission │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── elevator.cpp │ │ ├── elevator.hpp │ │ ├── main.cpp │ │ ├── makefile │ │ ├── monitor.h │ │ ├── person.cpp │ │ └── person.hpp │ └── test_cases.tar.gz └── README.md ├── CENG336 ├── README.md ├── THE1 │ ├── THE1.pdf │ └── the1.asm ├── THE2 │ ├── the2.asm │ ├── the2.pdf │ └── the2_v2.pdf └── THE3 │ ├── main.c │ └── the3_336_20192.pdf ├── CENG350 ├── CENG350-project-topic_20192.pdf ├── CENG350___SDD.pdf ├── CENG350___SRS.pdf ├── SDD-UML-Diagrams │ ├── Group62-Component-Diagram.mdj │ ├── Group62-Context-Diagram.mdj │ ├── Group62-Database-Entitiy-Relationship-Model.mdj │ ├── Group62-Deployment-Diagram.mdj │ ├── Group62-Interface-Class-Diagram.mdj │ ├── Group62-Sequence-Diagram-External-Inventory.mdj │ ├── Group62-Sequence-Diagram-External-Signup.mdj │ ├── Group62-Sequence-Diagram-External-Support-Ticket.mdj │ ├── Group62-Sequence-Diagram-Internal-Basket.mdj │ ├── Group62-Sequence-Diagram-Internal-Order.mdj │ ├── Group62-System-Class-Diagram.mdj │ └── Group62-Use-Case-Diagram.mdj └── SRS-UML-Diagrams │ ├── Group62-Context-Diagram.mdj │ ├── Group62-Database-Entitiy-Relationship-Model.mdj │ ├── Group62-External-Interface-Diagram.mdj │ ├── Group62-Sequence-Diagram-1-Enter-Store.mdj │ ├── Group62-Sequence-Diagram-2-Shopping.mdj │ ├── Group62-System-Class-Diagram.mdj │ └── Group62-Use-Case-Diagram.mdj ├── CENG351 ├── Programming Assignment - I │ ├── ceng │ │ └── ceng351 │ │ │ └── bookdb │ │ │ ├── Author.java │ │ │ ├── Author_of.java │ │ │ ├── BOOKDB.java │ │ │ ├── Book.java │ │ │ ├── Evaluation.java │ │ │ ├── FileOperations.java │ │ │ ├── IBOOKDB.java │ │ │ ├── Publisher.java │ │ │ ├── QueryResult.java │ │ │ ├── data │ │ │ ├── dump_author.txt │ │ │ ├── dump_author_of.txt │ │ │ ├── dump_book.txt │ │ │ └── dump_publisher.txt │ │ │ └── output │ │ │ ├── Output_0.txt │ │ │ ├── Output_1.txt │ │ │ ├── Output_10.txt │ │ │ ├── Output_11.txt │ │ │ ├── Output_12.txt │ │ │ ├── Output_13.txt │ │ │ ├── Output_14.txt │ │ │ ├── Output_15.txt │ │ │ ├── Output_2.txt │ │ │ ├── Output_3.txt │ │ │ ├── Output_4.txt │ │ │ ├── Output_5.txt │ │ │ ├── Output_6.txt │ │ │ ├── Output_7.txt │ │ │ ├── Output_8.txt │ │ │ └── Output_9.txt │ ├── ceng351_Fall2019_PA1_questionV3.pdf │ ├── dumps_used_for_grading.zip │ └── submission.tar.gz └── Programming Assignment - II │ ├── ceng │ └── ceng351 │ │ └── labdb │ │ ├── Bin.java │ │ ├── Evaluate.java │ │ └── LabDB.java │ ├── ceng351_Fall2019_PA2.pdf │ ├── evaluation_files.zip │ ├── sample_mains.zip │ ├── student_pack.zip │ └── submission.zip ├── CENG352 ├── Project 1 │ ├── Ceng352_Project1_v5.pdf │ ├── task1.sql │ ├── task2.sql │ └── task3.sql ├── Project 2 │ ├── Ceng_352_Project_2.pdf │ ├── changes.sql │ ├── source.zip │ └── trip.py ├── README.md ├── Written Assignment 1 │ ├── Ceng352_WrittenAssignment1.pdf │ ├── e2309615.pdf │ └── e2309615.sql ├── Written Assignment 2 │ ├── Ceng352_WHW2.pdf │ ├── e2309615.pdf │ └── e2309615.sql └── Written Assignment 3 │ ├── Ceng352_WHW3.pdf │ └── e2309615.pdf ├── CENG384 ├── 20192_ceng384_hw1.pdf ├── 20192_ceng384_hw2.pdf ├── CENG384___HW1.pdf └── CENG384___HW2.pdf ├── CENG435 ├── README.md └── THE2 │ ├── README.md │ ├── THE2.pdf │ ├── client.py │ ├── packet.py │ ├── server.py │ ├── simulator │ └── util.py ├── CENG443 ├── HW1 │ ├── GoldWars.jar │ ├── Submission │ │ ├── Agent.java │ │ ├── AgentDecorator.java │ │ ├── BasicAgent.java │ │ ├── BuyOrder.java │ │ ├── BuyOrderFactory.java │ │ ├── ChaseClosest.java │ │ ├── Common.java │ │ ├── Country.java │ │ ├── Display.java │ │ ├── Expert.java │ │ ├── GotoXY.java │ │ ├── Master.java │ │ ├── Novice.java │ │ ├── Order.java │ │ ├── OrderFactory.java │ │ ├── README.txt │ │ ├── Rest.java │ │ ├── SellOrder.java │ │ ├── SellOrderFactory.java │ │ ├── Shake.java │ │ ├── State.java │ │ └── uml.pdf │ ├── hw1.pdf │ └── images │ │ ├── china.jpg │ │ ├── cia.png │ │ ├── israel.jpg │ │ ├── mit.png │ │ ├── mossad.png │ │ ├── mss.png │ │ ├── russia.jpg │ │ ├── svr.png │ │ ├── turkey.jpg │ │ └── usa.jpg ├── HW2 │ ├── Submission │ │ ├── Builder.java │ │ ├── Common.java │ │ ├── Factory.java │ │ ├── Fixer.java │ │ ├── Inspector.java │ │ └── Supplier.java │ ├── codebase.zip │ ├── hw2.pdf │ └── images │ │ ├── Arm.jpg │ │ ├── Base.jpg │ │ ├── BaseArm.jpg │ │ ├── Builder.jpg │ │ ├── Camera.jpg │ │ ├── Fixer.jpg │ │ ├── Gripper.jpg │ │ ├── Inspector.jpg │ │ ├── MaintenanceKit.jpg │ │ ├── Supplier.jpg │ │ └── Welder.jpg ├── HW3 │ ├── Submission │ │ └── SIS.java │ ├── codebase.zip │ ├── hw3.pdf │ └── hw3.png └── README.md ├── CENG465 ├── HW1 │ ├── 2309615_assignment1.pdf │ └── assignment1.pdf ├── HW2 │ ├── VITERBI.ods │ ├── assignment2.pdf │ └── report.pdf ├── HW3 │ ├── Submission │ │ ├── Atom.java │ │ ├── Makefile │ │ ├── Point.java │ │ ├── README.md │ │ ├── hw3.java │ │ └── output.txt │ ├── assignment3.pdf │ └── hw3_proteins.zip ├── HW4 │ ├── BioGRID.txt │ ├── PathwayCommons.txt │ ├── Submission │ │ ├── KCore.java │ │ ├── Makefile │ │ ├── Node.java │ │ ├── PathwayCommons.out │ │ ├── ProteinInteraction.java │ │ └── README.md │ ├── assignment4.pdf │ └── yeast.txt └── README.md ├── CENG477 ├── HW3 │ ├── Assignment3.pdf │ ├── Inputs │ │ ├── horse.xml │ │ ├── horse_and_mug.xml │ │ ├── horse_and_mug_backface_culled.xml │ │ ├── horse_and_mug_frontface_culled.xml │ │ ├── horse_and_mug_reversed.xml │ │ └── horse_and_mug_reversed_frontface_culled.xml │ ├── Outputs │ │ ├── horse.png │ │ ├── horse_and_mug.png │ │ ├── horse_and_mug_backface_culled.png │ │ ├── horse_and_mug_frontface_culled.png │ │ ├── horse_and_mug_reversed.png │ │ └── horse_and_mug_reversed_frontface_culled.png │ └── Submission │ │ ├── Makefile │ │ ├── main.cpp │ │ ├── parser.cpp │ │ ├── parser.h │ │ ├── tinyxml2.cpp │ │ └── tinyxml2.h ├── HW4 │ ├── Assignment 4.pdf │ ├── Submission │ │ ├── Makefile │ │ ├── camera.cpp │ │ ├── camera.h │ │ ├── helper.cpp │ │ ├── helper.h │ │ ├── main.cpp │ │ ├── scene.cpp │ │ ├── scene.h │ │ ├── shader.frag │ │ ├── shader.vert │ │ ├── util.cpp │ │ └── util.h │ ├── glm.zip │ ├── height_map.jpg │ └── texture_map.jpg └── README.md ├── CENG499 ├── HW1 │ ├── README.md │ ├── ceng499_hw1.pdf │ ├── model │ │ ├── dataset.py │ │ ├── model.py │ │ ├── requirements.txt │ │ ├── scoreboard.py │ │ ├── test_all.sh │ │ └── train.py │ ├── report.pdf │ └── results │ │ ├── results │ │ └── tl_vl_best.csv ├── HW2 │ ├── README.md │ ├── ceng499_hw2.pdf │ ├── hac.py │ ├── hac_mini_tester.py │ ├── hac_report.py │ ├── hw2_data │ │ ├── hac │ │ │ ├── data1.npy │ │ │ ├── data2.npy │ │ │ ├── data3.npy │ │ │ └── data4.npy │ │ ├── kmeans │ │ │ ├── clustering1.npy │ │ │ ├── clustering2.npy │ │ │ ├── clustering3.npy │ │ │ └── clustering4.npy │ │ └── knn │ │ │ ├── test_data.npy │ │ │ ├── test_labels.npy │ │ │ ├── train_data.npy │ │ │ └── train_labels.npy │ ├── kmeans.py │ ├── kmeans_mini_tester.py │ ├── kmeans_report.py │ ├── knn.py │ ├── knn_mini_tester.py │ ├── knn_report.py │ ├── report.pdf │ └── result_logs │ │ ├── kmeans_result │ │ └── knn_result ├── HW3 │ ├── README.md │ ├── ceng499_hw3_20202.pdf │ ├── draw.py │ ├── dt.py │ ├── dt_mini_test.py │ ├── hw3_data.zip │ ├── plots │ │ └── svm │ │ │ ├── q1-0.01.png │ │ │ ├── q1-0.1.png │ │ │ ├── q1-1.png │ │ │ ├── q1-10.png │ │ │ ├── q1-100.png │ │ │ ├── q2-linear.png │ │ │ ├── q2-poly.png │ │ │ ├── q2-rbf.png │ │ │ ├── q2-sigmoid.png │ │ │ ├── q3.out │ │ │ └── q4.out │ ├── report.pdf │ ├── requirements.txt │ ├── svm_part_1.py │ ├── svm_part_2.py │ ├── svm_part_3.py │ ├── svm_part_3_values.py │ └── svm_part_4.py ├── HW4 │ ├── README.md │ ├── ceng499_hw4_20202.pdf │ ├── hmm.py │ ├── hw4_data │ │ └── sentiment │ │ │ ├── test_data.txt │ │ │ ├── test_labels.txt │ │ │ ├── train_data.txt │ │ │ └── train_labels.txt │ ├── nb.out │ ├── nb.py │ └── nb_calculate.py └── README.md ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/.gitmodules -------------------------------------------------------------------------------- /CENG111/THE2/official_tests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE2/official_tests.zip -------------------------------------------------------------------------------- /CENG111/THE2/the2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE2/the2.py -------------------------------------------------------------------------------- /CENG111/THE2/the2_description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE2/the2_description.pdf -------------------------------------------------------------------------------- /CENG111/THE3/maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE3/maker.py -------------------------------------------------------------------------------- /CENG111/THE3/official_tests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE3/official_tests.zip -------------------------------------------------------------------------------- /CENG111/THE3/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE3/tester.py -------------------------------------------------------------------------------- /CENG111/THE3/the3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE3/the3.py -------------------------------------------------------------------------------- /CENG111/THE3/the3_description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE3/the3_description.pdf -------------------------------------------------------------------------------- /CENG111/THE4/grader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE4/grader.zip -------------------------------------------------------------------------------- /CENG111/THE4/the4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE4/the4.pdf -------------------------------------------------------------------------------- /CENG111/THE4/the4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG111/THE4/the4.py -------------------------------------------------------------------------------- /CENG140/THE1/Tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/README.md -------------------------------------------------------------------------------- /CENG140/THE1/Tester/Tester.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/Tester.tar -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tester.py -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/1_1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/1_1.in -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/1_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/1_1.out -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/1_2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/1_2.in -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/1_2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/1_2.out -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/1_3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/1_3.in -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/1_3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/1_3.out -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/1_4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/1_4.in -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/1_4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/1_4.out -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_1.in -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_1.out -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_2.in -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_2.out -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_3.in -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_3.out -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_4.in -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_4.out -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_5.in -------------------------------------------------------------------------------- /CENG140/THE1/Tester/tests/2_5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/Tester/tests/2_5.out -------------------------------------------------------------------------------- /CENG140/THE1/grader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/grader.zip -------------------------------------------------------------------------------- /CENG140/THE1/the1_iterative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/the1_iterative.c -------------------------------------------------------------------------------- /CENG140/THE1/the1_part2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/the1_part2.c -------------------------------------------------------------------------------- /CENG140/THE1/the1_recursive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/the1_recursive.c -------------------------------------------------------------------------------- /CENG140/THE1/the1_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE1/the1_v2.pdf -------------------------------------------------------------------------------- /CENG140/THE2/Tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/README.md -------------------------------------------------------------------------------- /CENG140/THE2/Tester/Tester.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/Tester.tar -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tester.py -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/Sample_1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/Sample_1.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/Sample_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/Sample_1.out -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/Sample_2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/Sample_2.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/Sample_2.out: -------------------------------------------------------------------------------- 1 | 1: 2 | 2: 1 3 | -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/Star_GORA.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/Star_GORA.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/Star_GORA.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/Star_GORA.out -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/The-X-Files.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/The-X-Files.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/The-X-Files.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/The-X-Files.out -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac1.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac1.out: -------------------------------------------------------------------------------- 1 | 2: 2 | 3: 2 3 | -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac2.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac2.out -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac3.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac3.out -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac4.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac4.out -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac5.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac5.out -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac6.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac6.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac6.out: -------------------------------------------------------------------------------- 1 | 1: 7 8 2 | 2: 3 | 3: 4 | 4: 5 | 5: 6 | 6: 7 | -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac7.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac7.in -------------------------------------------------------------------------------- /CENG140/THE2/Tester/tests/ac7.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/Tester/tests/ac7.out -------------------------------------------------------------------------------- /CENG140/THE2/testIO.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/testIO.tar.gz -------------------------------------------------------------------------------- /CENG140/THE2/the2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/the2.c -------------------------------------------------------------------------------- /CENG140/THE2/the2_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG140/THE2/the2_v2.pdf -------------------------------------------------------------------------------- /CENG213/THE1/213_hw1_V1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/213_hw1_V1.pdf -------------------------------------------------------------------------------- /CENG213/THE1/213_hw1_V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/213_hw1_V2.pdf -------------------------------------------------------------------------------- /CENG213/THE1/evaluation_pack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/evaluation_pack.zip -------------------------------------------------------------------------------- /CENG213/THE1/student_pack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/student_pack.zip -------------------------------------------------------------------------------- /CENG213/THE1/student_pack_V2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/student_pack_V2.zip -------------------------------------------------------------------------------- /CENG213/THE1/submission/LinkedList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/submission/LinkedList.hpp -------------------------------------------------------------------------------- /CENG213/THE1/submission/Node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/submission/Node.hpp -------------------------------------------------------------------------------- /CENG213/THE1/submission/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/submission/User.cpp -------------------------------------------------------------------------------- /CENG213/THE1/submission/User.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/submission/User.hpp -------------------------------------------------------------------------------- /CENG213/THE1/submission/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/submission/Video.cpp -------------------------------------------------------------------------------- /CENG213/THE1/submission/Video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/submission/Video.hpp -------------------------------------------------------------------------------- /CENG213/THE1/submission/VideoShare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/submission/VideoShare.cpp -------------------------------------------------------------------------------- /CENG213/THE1/submission/VideoShare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE1/submission/VideoShare.hpp -------------------------------------------------------------------------------- /CENG213/THE2/213_hw2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE2/213_hw2.pdf -------------------------------------------------------------------------------- /CENG213/THE2/evaluation_pack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE2/evaluation_pack.zip -------------------------------------------------------------------------------- /CENG213/THE2/student_pack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE2/student_pack.zip -------------------------------------------------------------------------------- /CENG213/THE2/submission/photo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE2/submission/photo.cpp -------------------------------------------------------------------------------- /CENG213/THE2/submission/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE2/submission/photo.hpp -------------------------------------------------------------------------------- /CENG213/THE2/submission/stock_photo_webstore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE2/submission/stock_photo_webstore.cpp -------------------------------------------------------------------------------- /CENG213/THE2/submission/stock_photo_webstore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE2/submission/stock_photo_webstore.hpp -------------------------------------------------------------------------------- /CENG213/THE2/submission/tpbst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE2/submission/tpbst.hpp -------------------------------------------------------------------------------- /CENG213/THE3/Sample_Mains.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE3/Sample_Mains.zip -------------------------------------------------------------------------------- /CENG213/THE3/hw3_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE3/hw3_v2.pdf -------------------------------------------------------------------------------- /CENG213/THE3/submission/hw3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE3/submission/hw3.cpp -------------------------------------------------------------------------------- /CENG213/THE3/submission/hw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG213/THE3/submission/hw3.h -------------------------------------------------------------------------------- /CENG222/HW1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG222/HW1.pdf -------------------------------------------------------------------------------- /CENG222/HW2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG222/HW2.pdf -------------------------------------------------------------------------------- /CENG222/HW3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG222/HW3.pdf -------------------------------------------------------------------------------- /CENG222/HW4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG222/HW4.pdf -------------------------------------------------------------------------------- /CENG222/hw3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG222/hw3.m -------------------------------------------------------------------------------- /CENG232/lab1/hw1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab1/hw1.pdf -------------------------------------------------------------------------------- /CENG232/lab1/lab1.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab1/lab1.circ -------------------------------------------------------------------------------- /CENG232/lab2/hw_2_2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab2/hw_2_2019.pdf -------------------------------------------------------------------------------- /CENG232/lab2/lab2.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab2/lab2.circ -------------------------------------------------------------------------------- /CENG232/lab2/solution_and_grader/grader-hw2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab2/solution_and_grader/grader-hw2.properties -------------------------------------------------------------------------------- /CENG232/lab2/solution_and_grader/lab2.circ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab2/solution_and_grader/lab2.circ -------------------------------------------------------------------------------- /CENG232/lab2/solution_and_grader/lab2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab2/solution_and_grader/lab2.gif -------------------------------------------------------------------------------- /CENG232/lab2/solution_and_grader/logisim-ceng232-20090616.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab2/solution_and_grader/logisim-ceng232-20090616.jar -------------------------------------------------------------------------------- /CENG232/lab2/solution_and_grader/run_single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab2/solution_and_grader/run_single.sh -------------------------------------------------------------------------------- /CENG232/lab3/Part 1/hw3_part_1.gise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 1/hw3_part_1.gise -------------------------------------------------------------------------------- /CENG232/lab3/Part 1/hw3_part_1.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 1/hw3_part_1.xise -------------------------------------------------------------------------------- /CENG232/lab3/Part 1/lab3_1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 1/lab3_1.v -------------------------------------------------------------------------------- /CENG232/lab3/Part 1/testbench_df.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 1/testbench_df.v -------------------------------------------------------------------------------- /CENG232/lab3/Part 1/testbench_icplusplus.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 1/testbench_icplusplus.v -------------------------------------------------------------------------------- /CENG232/lab3/Part 2/Board232.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 2/Board232.ucf -------------------------------------------------------------------------------- /CENG232/lab3/Part 2/Board232.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 2/Board232.v -------------------------------------------------------------------------------- /CENG232/lab3/Part 2/hw3_part_2.gise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 2/hw3_part_2.gise -------------------------------------------------------------------------------- /CENG232/lab3/Part 2/hw3_part_2.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 2/hw3_part_2.xise -------------------------------------------------------------------------------- /CENG232/lab3/Part 2/lab3_2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/Part 2/lab3_2.v -------------------------------------------------------------------------------- /CENG232/lab3/hw3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab3/hw3.pdf -------------------------------------------------------------------------------- /CENG232/lab4/hw4_V1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab4/hw4_V1.pdf -------------------------------------------------------------------------------- /CENG232/lab4/lab4_1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab4/lab4_1.v -------------------------------------------------------------------------------- /CENG232/lab4/lab4_1.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/lab4/lab4_1.xise -------------------------------------------------------------------------------- /CENG232/logisim-ceng232-20090616.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG232/logisim-ceng232-20090616.jar -------------------------------------------------------------------------------- /CENG242/HW1/CENG242_HW1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW1/CENG242_HW1.pdf -------------------------------------------------------------------------------- /CENG242/HW1/HW1_testcases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW1/HW1_testcases.txt -------------------------------------------------------------------------------- /CENG242/HW1/Hw1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW1/Hw1.hs -------------------------------------------------------------------------------- /CENG242/HW2/CENG242_HW2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW2/CENG242_HW2.pdf -------------------------------------------------------------------------------- /CENG242/HW2/HW2_testcases.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW2/HW2_testcases.hs -------------------------------------------------------------------------------- /CENG242/HW2/HW2_testcases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW2/HW2_testcases.txt -------------------------------------------------------------------------------- /CENG242/HW2/Hw2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW2/Hw2.hs -------------------------------------------------------------------------------- /CENG242/HW3/Car.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Car.cpp -------------------------------------------------------------------------------- /CENG242/HW3/Car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Car.h -------------------------------------------------------------------------------- /CENG242/HW3/Championship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Championship.cpp -------------------------------------------------------------------------------- /CENG242/HW3/Championship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Championship.h -------------------------------------------------------------------------------- /CENG242/HW3/Input_Output_Example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Input_Output_Example.zip -------------------------------------------------------------------------------- /CENG242/HW3/Laptime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Laptime.cpp -------------------------------------------------------------------------------- /CENG242/HW3/Laptime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Laptime.h -------------------------------------------------------------------------------- /CENG242/HW3/PLHW3L.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/PLHW3L.pdf -------------------------------------------------------------------------------- /CENG242/HW3/Race.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Race.cpp -------------------------------------------------------------------------------- /CENG242/HW3/Race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Race.h -------------------------------------------------------------------------------- /CENG242/HW3/Utilizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW3/Utilizer.h -------------------------------------------------------------------------------- /CENG242/HW4/Archer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Archer.cpp -------------------------------------------------------------------------------- /CENG242/HW4/Archer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Archer.h -------------------------------------------------------------------------------- /CENG242/HW4/Board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Board.cpp -------------------------------------------------------------------------------- /CENG242/HW4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Board.h -------------------------------------------------------------------------------- /CENG242/HW4/Fighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Fighter.cpp -------------------------------------------------------------------------------- /CENG242/HW4/Fighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Fighter.h -------------------------------------------------------------------------------- /CENG242/HW4/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Game.cpp -------------------------------------------------------------------------------- /CENG242/HW4/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Game.h -------------------------------------------------------------------------------- /CENG242/HW4/Homework4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Homework4.pdf -------------------------------------------------------------------------------- /CENG242/HW4/InputParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/InputParser.cpp -------------------------------------------------------------------------------- /CENG242/HW4/InputParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/InputParser.h -------------------------------------------------------------------------------- /CENG242/HW4/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Player.cpp -------------------------------------------------------------------------------- /CENG242/HW4/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Player.h -------------------------------------------------------------------------------- /CENG242/HW4/Priest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Priest.cpp -------------------------------------------------------------------------------- /CENG242/HW4/Priest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Priest.h -------------------------------------------------------------------------------- /CENG242/HW4/SampleIO.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/SampleIO.zip -------------------------------------------------------------------------------- /CENG242/HW4/Scout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Scout.cpp -------------------------------------------------------------------------------- /CENG242/HW4/Scout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Scout.h -------------------------------------------------------------------------------- /CENG242/HW4/Tank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Tank.cpp -------------------------------------------------------------------------------- /CENG242/HW4/Tank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW4/Tank.h -------------------------------------------------------------------------------- /CENG242/HW5/Ceng242_Spring_18_19_HW5_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW5/Ceng242_Spring_18_19_HW5_v1.pdf -------------------------------------------------------------------------------- /CENG242/HW5/catoms.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW5/catoms.pl -------------------------------------------------------------------------------- /CENG242/HW5/hw5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW5/hw5.pl -------------------------------------------------------------------------------- /CENG242/HW5/hw5_grader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG242/HW5/hw5_grader.pl -------------------------------------------------------------------------------- /CENG331/Lab I - Bomb Lab/Bomblab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab I - Bomb Lab/Bomblab.pdf -------------------------------------------------------------------------------- /CENG331/Lab I - Bomb Lab/GDB_cheat_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab I - Bomb Lab/GDB_cheat_sheet.pdf -------------------------------------------------------------------------------- /CENG331/Lab I - Bomb Lab/bomb457/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab I - Bomb Lab/bomb457/README -------------------------------------------------------------------------------- /CENG331/Lab I - Bomb Lab/bomb457/bomb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab I - Bomb Lab/bomb457/bomb -------------------------------------------------------------------------------- /CENG331/Lab I - Bomb Lab/bomb457/bomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab I - Bomb Lab/bomb457/bomb.c -------------------------------------------------------------------------------- /CENG331/Lab I - Bomb Lab/bomb457/soln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab I - Bomb Lab/bomb457/soln -------------------------------------------------------------------------------- /CENG331/Lab I - Bomb Lab/bomb457/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab I - Bomb Lab/bomb457/strings -------------------------------------------------------------------------------- /CENG331/Lab I - Bomb Lab/bomb457/table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab I - Bomb Lab/bomb457/table -------------------------------------------------------------------------------- /CENG331/Lab I - Bomb Lab/x64_cheat_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab I - Bomb Lab/x64_cheat_sheet.pdf -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/AttackLab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/AttackLab.pdf -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/handin-raw/raw-c1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/handin-raw/raw-c1.txt -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/handin-raw/raw-c2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/handin-raw/raw-c2.txt -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/handin-raw/raw-c3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/handin-raw/raw-c3.txt -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/handin-raw/raw-c4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/handin-raw/raw-c4.txt -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/handin/ctarget.l1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/handin/ctarget.l1 -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/handin/ctarget.l2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/handin/ctarget.l2 -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/handin/ctarget.l3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/handin/ctarget.l3 -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/handin/rtarget.l2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/handin/rtarget.l2 -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/target150/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/target150/README.txt -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/target150/cookie.txt: -------------------------------------------------------------------------------- 1 | 0x2d8c0362 2 | -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/target150/cookie_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/target150/cookie_array.c -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/target150/ctarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/target150/ctarget -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/target150/farm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/target150/farm.c -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/target150/hex2raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/target150/hex2raw -------------------------------------------------------------------------------- /CENG331/Lab II - Attack Lab/target150/rtarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab II - Attack Lab/target150/rtarget -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/archlab-handout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/archlab-handout/Makefile -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/archlab-handout/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/archlab-handout/README -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/archlab-handout/archlab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/archlab-handout/archlab.pdf -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/archlab-handout/sim.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/archlab-handout/sim.tar -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/archlab-handout/simguide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/archlab-handout/simguide.pdf -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/handin/copy.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/handin/copy.ys -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/handin/ncopy.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/handin/ncopy.ys -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/handin/pipe-full.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/handin/pipe-full.hcl -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/handin/rsum.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/handin/rsum.ys -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/handin/seq-full.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/handin/seq-full.hcl -------------------------------------------------------------------------------- /CENG331/Lab III - Architecture Lab/handin/sum.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab III - Architecture Lab/handin/sum.ys -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/PerformanceHW.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/PerformanceHW.pdf -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization.tar -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/Makefile -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/README -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/clock.c -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/clock.h -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/config.h -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/defs.h -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/driver.c -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/fcyc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/fcyc.c -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/fcyc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/fcyc.h -------------------------------------------------------------------------------- /CENG331/Lab IV - Performance Lab/optimization/kernels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG331/Lab IV - Performance Lab/optimization/kernels.c -------------------------------------------------------------------------------- /CENG334/Homework 1/Ceng334HW1_v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/Ceng334HW1_v1.1.pdf -------------------------------------------------------------------------------- /CENG334/Homework 1/HW1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/HW1.tar.gz -------------------------------------------------------------------------------- /CENG334/Homework 1/execs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/execs.zip -------------------------------------------------------------------------------- /CENG334/Homework 1/extra.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/extra.tar.gz -------------------------------------------------------------------------------- /CENG334/Homework 1/inputs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/inputs.zip -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/bidder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/bidder.cpp -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/bidder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/bidder.hpp -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/logging.c -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/logging.h -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/makefile -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/message.h -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/methods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/methods.cpp -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/methods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/methods.hpp -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/server.cpp -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/utils.cpp -------------------------------------------------------------------------------- /CENG334/Homework 1/submission/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 1/submission/utils.hpp -------------------------------------------------------------------------------- /CENG334/Homework 2/Ceng334-Homework2_v1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/Ceng334-Homework2_v1-2.pdf -------------------------------------------------------------------------------- /CENG334/Homework 2/correct_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/correct_format.txt -------------------------------------------------------------------------------- /CENG334/Homework 2/inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/inp.txt -------------------------------------------------------------------------------- /CENG334/Homework 2/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/monitor.h -------------------------------------------------------------------------------- /CENG334/Homework 2/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/out.txt -------------------------------------------------------------------------------- /CENG334/Homework 2/submission/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/submission/controller.cpp -------------------------------------------------------------------------------- /CENG334/Homework 2/submission/controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/submission/controller.hpp -------------------------------------------------------------------------------- /CENG334/Homework 2/submission/elevator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/submission/elevator.cpp -------------------------------------------------------------------------------- /CENG334/Homework 2/submission/elevator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/submission/elevator.hpp -------------------------------------------------------------------------------- /CENG334/Homework 2/submission/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/submission/main.cpp -------------------------------------------------------------------------------- /CENG334/Homework 2/submission/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/submission/makefile -------------------------------------------------------------------------------- /CENG334/Homework 2/submission/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/submission/monitor.h -------------------------------------------------------------------------------- /CENG334/Homework 2/submission/person.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/submission/person.cpp -------------------------------------------------------------------------------- /CENG334/Homework 2/submission/person.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/submission/person.hpp -------------------------------------------------------------------------------- /CENG334/Homework 2/test_cases.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/Homework 2/test_cases.tar.gz -------------------------------------------------------------------------------- /CENG334/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG334/README.md -------------------------------------------------------------------------------- /CENG336/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG336/README.md -------------------------------------------------------------------------------- /CENG336/THE1/THE1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG336/THE1/THE1.pdf -------------------------------------------------------------------------------- /CENG336/THE1/the1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG336/THE1/the1.asm -------------------------------------------------------------------------------- /CENG336/THE2/the2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG336/THE2/the2.asm -------------------------------------------------------------------------------- /CENG336/THE2/the2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG336/THE2/the2.pdf -------------------------------------------------------------------------------- /CENG336/THE2/the2_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG336/THE2/the2_v2.pdf -------------------------------------------------------------------------------- /CENG336/THE3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG336/THE3/main.c -------------------------------------------------------------------------------- /CENG336/THE3/the3_336_20192.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG336/THE3/the3_336_20192.pdf -------------------------------------------------------------------------------- /CENG350/CENG350-project-topic_20192.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/CENG350-project-topic_20192.pdf -------------------------------------------------------------------------------- /CENG350/CENG350___SDD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/CENG350___SDD.pdf -------------------------------------------------------------------------------- /CENG350/CENG350___SRS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/CENG350___SRS.pdf -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Component-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Component-Diagram.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Context-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Context-Diagram.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Database-Entitiy-Relationship-Model.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Database-Entitiy-Relationship-Model.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Deployment-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Deployment-Diagram.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Interface-Class-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Interface-Class-Diagram.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-External-Inventory.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-External-Inventory.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-External-Signup.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-External-Signup.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-External-Support-Ticket.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-External-Support-Ticket.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-Internal-Basket.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-Internal-Basket.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-Internal-Order.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Sequence-Diagram-Internal-Order.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-System-Class-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-System-Class-Diagram.mdj -------------------------------------------------------------------------------- /CENG350/SDD-UML-Diagrams/Group62-Use-Case-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SDD-UML-Diagrams/Group62-Use-Case-Diagram.mdj -------------------------------------------------------------------------------- /CENG350/SRS-UML-Diagrams/Group62-Context-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SRS-UML-Diagrams/Group62-Context-Diagram.mdj -------------------------------------------------------------------------------- /CENG350/SRS-UML-Diagrams/Group62-Database-Entitiy-Relationship-Model.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SRS-UML-Diagrams/Group62-Database-Entitiy-Relationship-Model.mdj -------------------------------------------------------------------------------- /CENG350/SRS-UML-Diagrams/Group62-External-Interface-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SRS-UML-Diagrams/Group62-External-Interface-Diagram.mdj -------------------------------------------------------------------------------- /CENG350/SRS-UML-Diagrams/Group62-Sequence-Diagram-1-Enter-Store.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SRS-UML-Diagrams/Group62-Sequence-Diagram-1-Enter-Store.mdj -------------------------------------------------------------------------------- /CENG350/SRS-UML-Diagrams/Group62-Sequence-Diagram-2-Shopping.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SRS-UML-Diagrams/Group62-Sequence-Diagram-2-Shopping.mdj -------------------------------------------------------------------------------- /CENG350/SRS-UML-Diagrams/Group62-System-Class-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SRS-UML-Diagrams/Group62-System-Class-Diagram.mdj -------------------------------------------------------------------------------- /CENG350/SRS-UML-Diagrams/Group62-Use-Case-Diagram.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG350/SRS-UML-Diagrams/Group62-Use-Case-Diagram.mdj -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Author.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Author.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Author_of.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Author_of.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/BOOKDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/BOOKDB.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Book.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Evaluation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Evaluation.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/FileOperations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/FileOperations.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/IBOOKDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/IBOOKDB.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Publisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/Publisher.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/QueryResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/QueryResult.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/data/dump_author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/data/dump_author.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/data/dump_author_of.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/data/dump_author_of.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/data/dump_book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/data/dump_book.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/data/dump_publisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/data/dump_publisher.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_0.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_1.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_10.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_11.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_12.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_13.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_14.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_15.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_2.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_3.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_4.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_5.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_6.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_7.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_8.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng/ceng351/bookdb/output/Output_9.txt -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/ceng351_Fall2019_PA1_questionV3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/ceng351_Fall2019_PA1_questionV3.pdf -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/dumps_used_for_grading.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/dumps_used_for_grading.zip -------------------------------------------------------------------------------- /CENG351/Programming Assignment - I/submission.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - I/submission.tar.gz -------------------------------------------------------------------------------- /CENG351/Programming Assignment - II/ceng/ceng351/labdb/Bin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - II/ceng/ceng351/labdb/Bin.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - II/ceng/ceng351/labdb/Evaluate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - II/ceng/ceng351/labdb/Evaluate.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - II/ceng/ceng351/labdb/LabDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - II/ceng/ceng351/labdb/LabDB.java -------------------------------------------------------------------------------- /CENG351/Programming Assignment - II/ceng351_Fall2019_PA2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - II/ceng351_Fall2019_PA2.pdf -------------------------------------------------------------------------------- /CENG351/Programming Assignment - II/evaluation_files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - II/evaluation_files.zip -------------------------------------------------------------------------------- /CENG351/Programming Assignment - II/sample_mains.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - II/sample_mains.zip -------------------------------------------------------------------------------- /CENG351/Programming Assignment - II/student_pack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - II/student_pack.zip -------------------------------------------------------------------------------- /CENG351/Programming Assignment - II/submission.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG351/Programming Assignment - II/submission.zip -------------------------------------------------------------------------------- /CENG352/Project 1/Ceng352_Project1_v5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Project 1/Ceng352_Project1_v5.pdf -------------------------------------------------------------------------------- /CENG352/Project 1/task1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Project 1/task1.sql -------------------------------------------------------------------------------- /CENG352/Project 1/task2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Project 1/task2.sql -------------------------------------------------------------------------------- /CENG352/Project 1/task3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Project 1/task3.sql -------------------------------------------------------------------------------- /CENG352/Project 2/Ceng_352_Project_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Project 2/Ceng_352_Project_2.pdf -------------------------------------------------------------------------------- /CENG352/Project 2/changes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Project 2/changes.sql -------------------------------------------------------------------------------- /CENG352/Project 2/source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Project 2/source.zip -------------------------------------------------------------------------------- /CENG352/Project 2/trip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Project 2/trip.py -------------------------------------------------------------------------------- /CENG352/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/README.md -------------------------------------------------------------------------------- /CENG352/Written Assignment 1/Ceng352_WrittenAssignment1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Written Assignment 1/Ceng352_WrittenAssignment1.pdf -------------------------------------------------------------------------------- /CENG352/Written Assignment 1/e2309615.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Written Assignment 1/e2309615.pdf -------------------------------------------------------------------------------- /CENG352/Written Assignment 1/e2309615.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Written Assignment 1/e2309615.sql -------------------------------------------------------------------------------- /CENG352/Written Assignment 2/Ceng352_WHW2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Written Assignment 2/Ceng352_WHW2.pdf -------------------------------------------------------------------------------- /CENG352/Written Assignment 2/e2309615.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Written Assignment 2/e2309615.pdf -------------------------------------------------------------------------------- /CENG352/Written Assignment 2/e2309615.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Written Assignment 2/e2309615.sql -------------------------------------------------------------------------------- /CENG352/Written Assignment 3/Ceng352_WHW3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Written Assignment 3/Ceng352_WHW3.pdf -------------------------------------------------------------------------------- /CENG352/Written Assignment 3/e2309615.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG352/Written Assignment 3/e2309615.pdf -------------------------------------------------------------------------------- /CENG384/20192_ceng384_hw1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG384/20192_ceng384_hw1.pdf -------------------------------------------------------------------------------- /CENG384/20192_ceng384_hw2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG384/20192_ceng384_hw2.pdf -------------------------------------------------------------------------------- /CENG384/CENG384___HW1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG384/CENG384___HW1.pdf -------------------------------------------------------------------------------- /CENG384/CENG384___HW2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG384/CENG384___HW2.pdf -------------------------------------------------------------------------------- /CENG435/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG435/README.md -------------------------------------------------------------------------------- /CENG435/THE2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG435/THE2/README.md -------------------------------------------------------------------------------- /CENG435/THE2/THE2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG435/THE2/THE2.pdf -------------------------------------------------------------------------------- /CENG435/THE2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG435/THE2/client.py -------------------------------------------------------------------------------- /CENG435/THE2/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG435/THE2/packet.py -------------------------------------------------------------------------------- /CENG435/THE2/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG435/THE2/server.py -------------------------------------------------------------------------------- /CENG435/THE2/simulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG435/THE2/simulator -------------------------------------------------------------------------------- /CENG435/THE2/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG435/THE2/util.py -------------------------------------------------------------------------------- /CENG443/HW1/GoldWars.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/GoldWars.jar -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Agent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Agent.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/AgentDecorator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/AgentDecorator.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/BasicAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/BasicAgent.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/BuyOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/BuyOrder.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/BuyOrderFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/BuyOrderFactory.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/ChaseClosest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/ChaseClosest.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Common.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Country.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Country.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Display.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Display.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Expert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Expert.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/GotoXY.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/GotoXY.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Master.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Master.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Novice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Novice.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Order.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/OrderFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/OrderFactory.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/README.txt -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Rest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Rest.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/SellOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/SellOrder.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/SellOrderFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/SellOrderFactory.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/Shake.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/Shake.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/State.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/State.java -------------------------------------------------------------------------------- /CENG443/HW1/Submission/uml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/Submission/uml.pdf -------------------------------------------------------------------------------- /CENG443/HW1/hw1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/hw1.pdf -------------------------------------------------------------------------------- /CENG443/HW1/images/china.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/china.jpg -------------------------------------------------------------------------------- /CENG443/HW1/images/cia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/cia.png -------------------------------------------------------------------------------- /CENG443/HW1/images/israel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/israel.jpg -------------------------------------------------------------------------------- /CENG443/HW1/images/mit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/mit.png -------------------------------------------------------------------------------- /CENG443/HW1/images/mossad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/mossad.png -------------------------------------------------------------------------------- /CENG443/HW1/images/mss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/mss.png -------------------------------------------------------------------------------- /CENG443/HW1/images/russia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/russia.jpg -------------------------------------------------------------------------------- /CENG443/HW1/images/svr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/svr.png -------------------------------------------------------------------------------- /CENG443/HW1/images/turkey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/turkey.jpg -------------------------------------------------------------------------------- /CENG443/HW1/images/usa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW1/images/usa.jpg -------------------------------------------------------------------------------- /CENG443/HW2/Submission/Builder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/Submission/Builder.java -------------------------------------------------------------------------------- /CENG443/HW2/Submission/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/Submission/Common.java -------------------------------------------------------------------------------- /CENG443/HW2/Submission/Factory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/Submission/Factory.java -------------------------------------------------------------------------------- /CENG443/HW2/Submission/Fixer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/Submission/Fixer.java -------------------------------------------------------------------------------- /CENG443/HW2/Submission/Inspector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/Submission/Inspector.java -------------------------------------------------------------------------------- /CENG443/HW2/Submission/Supplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/Submission/Supplier.java -------------------------------------------------------------------------------- /CENG443/HW2/codebase.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/codebase.zip -------------------------------------------------------------------------------- /CENG443/HW2/hw2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/hw2.pdf -------------------------------------------------------------------------------- /CENG443/HW2/images/Arm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/Arm.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/Base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/Base.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/BaseArm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/BaseArm.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/Builder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/Builder.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/Camera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/Camera.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/Fixer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/Fixer.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/Gripper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/Gripper.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/Inspector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/Inspector.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/MaintenanceKit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/MaintenanceKit.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/Supplier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/Supplier.jpg -------------------------------------------------------------------------------- /CENG443/HW2/images/Welder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW2/images/Welder.jpg -------------------------------------------------------------------------------- /CENG443/HW3/Submission/SIS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW3/Submission/SIS.java -------------------------------------------------------------------------------- /CENG443/HW3/codebase.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW3/codebase.zip -------------------------------------------------------------------------------- /CENG443/HW3/hw3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW3/hw3.pdf -------------------------------------------------------------------------------- /CENG443/HW3/hw3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/HW3/hw3.png -------------------------------------------------------------------------------- /CENG443/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG443/README.md -------------------------------------------------------------------------------- /CENG465/HW1/2309615_assignment1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW1/2309615_assignment1.pdf -------------------------------------------------------------------------------- /CENG465/HW1/assignment1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW1/assignment1.pdf -------------------------------------------------------------------------------- /CENG465/HW2/VITERBI.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW2/VITERBI.ods -------------------------------------------------------------------------------- /CENG465/HW2/assignment2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW2/assignment2.pdf -------------------------------------------------------------------------------- /CENG465/HW2/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW2/report.pdf -------------------------------------------------------------------------------- /CENG465/HW3/Submission/Atom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW3/Submission/Atom.java -------------------------------------------------------------------------------- /CENG465/HW3/Submission/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW3/Submission/Makefile -------------------------------------------------------------------------------- /CENG465/HW3/Submission/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW3/Submission/Point.java -------------------------------------------------------------------------------- /CENG465/HW3/Submission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW3/Submission/README.md -------------------------------------------------------------------------------- /CENG465/HW3/Submission/hw3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW3/Submission/hw3.java -------------------------------------------------------------------------------- /CENG465/HW3/Submission/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW3/Submission/output.txt -------------------------------------------------------------------------------- /CENG465/HW3/assignment3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW3/assignment3.pdf -------------------------------------------------------------------------------- /CENG465/HW3/hw3_proteins.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW3/hw3_proteins.zip -------------------------------------------------------------------------------- /CENG465/HW4/BioGRID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/BioGRID.txt -------------------------------------------------------------------------------- /CENG465/HW4/PathwayCommons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/PathwayCommons.txt -------------------------------------------------------------------------------- /CENG465/HW4/Submission/KCore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/Submission/KCore.java -------------------------------------------------------------------------------- /CENG465/HW4/Submission/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/Submission/Makefile -------------------------------------------------------------------------------- /CENG465/HW4/Submission/Node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/Submission/Node.java -------------------------------------------------------------------------------- /CENG465/HW4/Submission/PathwayCommons.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/Submission/PathwayCommons.out -------------------------------------------------------------------------------- /CENG465/HW4/Submission/ProteinInteraction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/Submission/ProteinInteraction.java -------------------------------------------------------------------------------- /CENG465/HW4/Submission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/Submission/README.md -------------------------------------------------------------------------------- /CENG465/HW4/assignment4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/assignment4.pdf -------------------------------------------------------------------------------- /CENG465/HW4/yeast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/HW4/yeast.txt -------------------------------------------------------------------------------- /CENG465/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG465/README.md -------------------------------------------------------------------------------- /CENG477/HW3/Assignment3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Assignment3.pdf -------------------------------------------------------------------------------- /CENG477/HW3/Inputs/horse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Inputs/horse.xml -------------------------------------------------------------------------------- /CENG477/HW3/Inputs/horse_and_mug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Inputs/horse_and_mug.xml -------------------------------------------------------------------------------- /CENG477/HW3/Inputs/horse_and_mug_backface_culled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Inputs/horse_and_mug_backface_culled.xml -------------------------------------------------------------------------------- /CENG477/HW3/Inputs/horse_and_mug_frontface_culled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Inputs/horse_and_mug_frontface_culled.xml -------------------------------------------------------------------------------- /CENG477/HW3/Inputs/horse_and_mug_reversed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Inputs/horse_and_mug_reversed.xml -------------------------------------------------------------------------------- /CENG477/HW3/Inputs/horse_and_mug_reversed_frontface_culled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Inputs/horse_and_mug_reversed_frontface_culled.xml -------------------------------------------------------------------------------- /CENG477/HW3/Outputs/horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Outputs/horse.png -------------------------------------------------------------------------------- /CENG477/HW3/Outputs/horse_and_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Outputs/horse_and_mug.png -------------------------------------------------------------------------------- /CENG477/HW3/Outputs/horse_and_mug_backface_culled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Outputs/horse_and_mug_backface_culled.png -------------------------------------------------------------------------------- /CENG477/HW3/Outputs/horse_and_mug_frontface_culled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Outputs/horse_and_mug_frontface_culled.png -------------------------------------------------------------------------------- /CENG477/HW3/Outputs/horse_and_mug_reversed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Outputs/horse_and_mug_reversed.png -------------------------------------------------------------------------------- /CENG477/HW3/Outputs/horse_and_mug_reversed_frontface_culled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Outputs/horse_and_mug_reversed_frontface_culled.png -------------------------------------------------------------------------------- /CENG477/HW3/Submission/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Submission/Makefile -------------------------------------------------------------------------------- /CENG477/HW3/Submission/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Submission/main.cpp -------------------------------------------------------------------------------- /CENG477/HW3/Submission/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Submission/parser.cpp -------------------------------------------------------------------------------- /CENG477/HW3/Submission/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Submission/parser.h -------------------------------------------------------------------------------- /CENG477/HW3/Submission/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Submission/tinyxml2.cpp -------------------------------------------------------------------------------- /CENG477/HW3/Submission/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW3/Submission/tinyxml2.h -------------------------------------------------------------------------------- /CENG477/HW4/Assignment 4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Assignment 4.pdf -------------------------------------------------------------------------------- /CENG477/HW4/Submission/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/Makefile -------------------------------------------------------------------------------- /CENG477/HW4/Submission/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/camera.cpp -------------------------------------------------------------------------------- /CENG477/HW4/Submission/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/camera.h -------------------------------------------------------------------------------- /CENG477/HW4/Submission/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/helper.cpp -------------------------------------------------------------------------------- /CENG477/HW4/Submission/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/helper.h -------------------------------------------------------------------------------- /CENG477/HW4/Submission/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/main.cpp -------------------------------------------------------------------------------- /CENG477/HW4/Submission/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/scene.cpp -------------------------------------------------------------------------------- /CENG477/HW4/Submission/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/scene.h -------------------------------------------------------------------------------- /CENG477/HW4/Submission/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/shader.frag -------------------------------------------------------------------------------- /CENG477/HW4/Submission/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/shader.vert -------------------------------------------------------------------------------- /CENG477/HW4/Submission/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/util.cpp -------------------------------------------------------------------------------- /CENG477/HW4/Submission/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/Submission/util.h -------------------------------------------------------------------------------- /CENG477/HW4/glm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/glm.zip -------------------------------------------------------------------------------- /CENG477/HW4/height_map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/height_map.jpg -------------------------------------------------------------------------------- /CENG477/HW4/texture_map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/HW4/texture_map.jpg -------------------------------------------------------------------------------- /CENG477/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG477/README.md -------------------------------------------------------------------------------- /CENG499/HW1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/README.md -------------------------------------------------------------------------------- /CENG499/HW1/ceng499_hw1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/ceng499_hw1.pdf -------------------------------------------------------------------------------- /CENG499/HW1/model/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/model/dataset.py -------------------------------------------------------------------------------- /CENG499/HW1/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/model/model.py -------------------------------------------------------------------------------- /CENG499/HW1/model/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/model/requirements.txt -------------------------------------------------------------------------------- /CENG499/HW1/model/scoreboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/model/scoreboard.py -------------------------------------------------------------------------------- /CENG499/HW1/model/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/model/test_all.sh -------------------------------------------------------------------------------- /CENG499/HW1/model/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/model/train.py -------------------------------------------------------------------------------- /CENG499/HW1/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/report.pdf -------------------------------------------------------------------------------- /CENG499/HW1/results/results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/results/results -------------------------------------------------------------------------------- /CENG499/HW1/results/tl_vl_best.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW1/results/tl_vl_best.csv -------------------------------------------------------------------------------- /CENG499/HW2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/README.md -------------------------------------------------------------------------------- /CENG499/HW2/ceng499_hw2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/ceng499_hw2.pdf -------------------------------------------------------------------------------- /CENG499/HW2/hac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hac.py -------------------------------------------------------------------------------- /CENG499/HW2/hac_mini_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hac_mini_tester.py -------------------------------------------------------------------------------- /CENG499/HW2/hac_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hac_report.py -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/hac/data1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/hac/data1.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/hac/data2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/hac/data2.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/hac/data3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/hac/data3.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/hac/data4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/hac/data4.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/kmeans/clustering1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/kmeans/clustering1.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/kmeans/clustering2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/kmeans/clustering2.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/kmeans/clustering3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/kmeans/clustering3.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/kmeans/clustering4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/kmeans/clustering4.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/knn/test_data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/knn/test_data.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/knn/test_labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/knn/test_labels.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/knn/train_data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/knn/train_data.npy -------------------------------------------------------------------------------- /CENG499/HW2/hw2_data/knn/train_labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/hw2_data/knn/train_labels.npy -------------------------------------------------------------------------------- /CENG499/HW2/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/kmeans.py -------------------------------------------------------------------------------- /CENG499/HW2/kmeans_mini_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/kmeans_mini_tester.py -------------------------------------------------------------------------------- /CENG499/HW2/kmeans_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/kmeans_report.py -------------------------------------------------------------------------------- /CENG499/HW2/knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/knn.py -------------------------------------------------------------------------------- /CENG499/HW2/knn_mini_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/knn_mini_tester.py -------------------------------------------------------------------------------- /CENG499/HW2/knn_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/knn_report.py -------------------------------------------------------------------------------- /CENG499/HW2/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/report.pdf -------------------------------------------------------------------------------- /CENG499/HW2/result_logs/kmeans_result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/result_logs/kmeans_result -------------------------------------------------------------------------------- /CENG499/HW2/result_logs/knn_result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW2/result_logs/knn_result -------------------------------------------------------------------------------- /CENG499/HW3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/README.md -------------------------------------------------------------------------------- /CENG499/HW3/ceng499_hw3_20202.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/ceng499_hw3_20202.pdf -------------------------------------------------------------------------------- /CENG499/HW3/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/draw.py -------------------------------------------------------------------------------- /CENG499/HW3/dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/dt.py -------------------------------------------------------------------------------- /CENG499/HW3/dt_mini_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/dt_mini_test.py -------------------------------------------------------------------------------- /CENG499/HW3/hw3_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/hw3_data.zip -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q1-0.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q1-0.01.png -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q1-0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q1-0.1.png -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q1-1.png -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q1-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q1-10.png -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q1-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q1-100.png -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q2-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q2-linear.png -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q2-poly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q2-poly.png -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q2-rbf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q2-rbf.png -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q2-sigmoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q2-sigmoid.png -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q3.out -------------------------------------------------------------------------------- /CENG499/HW3/plots/svm/q4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/plots/svm/q4.out -------------------------------------------------------------------------------- /CENG499/HW3/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/report.pdf -------------------------------------------------------------------------------- /CENG499/HW3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/requirements.txt -------------------------------------------------------------------------------- /CENG499/HW3/svm_part_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/svm_part_1.py -------------------------------------------------------------------------------- /CENG499/HW3/svm_part_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/svm_part_2.py -------------------------------------------------------------------------------- /CENG499/HW3/svm_part_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/svm_part_3.py -------------------------------------------------------------------------------- /CENG499/HW3/svm_part_3_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/svm_part_3_values.py -------------------------------------------------------------------------------- /CENG499/HW3/svm_part_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW3/svm_part_4.py -------------------------------------------------------------------------------- /CENG499/HW4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/README.md -------------------------------------------------------------------------------- /CENG499/HW4/ceng499_hw4_20202.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/ceng499_hw4_20202.pdf -------------------------------------------------------------------------------- /CENG499/HW4/hmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/hmm.py -------------------------------------------------------------------------------- /CENG499/HW4/hw4_data/sentiment/test_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/hw4_data/sentiment/test_data.txt -------------------------------------------------------------------------------- /CENG499/HW4/hw4_data/sentiment/test_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/hw4_data/sentiment/test_labels.txt -------------------------------------------------------------------------------- /CENG499/HW4/hw4_data/sentiment/train_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/hw4_data/sentiment/train_data.txt -------------------------------------------------------------------------------- /CENG499/HW4/hw4_data/sentiment/train_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/hw4_data/sentiment/train_labels.txt -------------------------------------------------------------------------------- /CENG499/HW4/nb.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/nb.out -------------------------------------------------------------------------------- /CENG499/HW4/nb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/nb.py -------------------------------------------------------------------------------- /CENG499/HW4/nb_calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/HW4/nb_calculate.py -------------------------------------------------------------------------------- /CENG499/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/CENG499/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozsgy/METU/HEAD/README.md --------------------------------------------------------------------------------