├── CONTRIBUTORS.md ├── Program ├── C# │ ├── hello_world_bvdwalt.cs │ └── hello_world_nlsum1.cs ├── C++ │ ├── Hello_World_ChristianTW.cpp │ ├── Love_calculator.cpp │ ├── c++ │ ├── helloWorldAdityaNeel.cpp │ ├── hello_world_Ujjwal0501.cpp │ ├── hello_world_dushivani.cpp │ ├── hello_world_ikad95.cpp │ └── hello_world_jenimPatel.cpp ├── C │ ├── hello_word_linehk.c │ └── hello_world_christianmae.c ├── GO │ ├── hello_world_bvdwalt.go │ ├── hello_world_julesmike.go │ └── hello_world_kartikey-singh.go ├── Java │ ├── hello_world_Chibi-Shem.java │ ├── hello_world_bvdwalt.java │ └── hello_world_jaynilshah.java ├── ObjectiveC │ └── hello_world_darkang3lz92.m ├── Python │ ├── hello_world_ArnavRupde.py │ ├── hello_world_Chibi-Shem.py │ ├── hello_world_KunalKatariya.py │ ├── hello_world_christianmae.py │ ├── hello_world_jbmills327.py │ ├── hello_world_kausha15.py │ └── hello_world_rajshah9914.py ├── R │ └── hello_world_sourabhvarshney111.r ├── README.md ├── Ruby │ └── hello_world.rb ├── SQL │ └── hello_world_sql_ThomasChr.sql ├── Scala │ └── hello_world_sourabhvarshney111.scala ├── assembly │ └── hello_world_raymondthedev.asm ├── helloWorld.dart ├── hello_world_miralp241.c ├── javascript │ ├── hello-world-imvpn22.js │ ├── hello-world-mariogmz.html │ ├── hello_world_keshavgoyal2807.js │ ├── hello_world_littlestar642.js │ ├── hello_world_rishabhkumar112.js │ └── hello_world_worm4047 ├── php │ ├── Hello_World_GouravSomani.php │ └── hello_world_nadimattari.php ├── python │ ├── hello_world_mano.py │ ├── hello_world_virenb.py │ └── python.py └── python3 │ └── hello_world_shravankumar9892.py ├── README.md ├── competitive_programming.md ├── profiles ├── AJV.md ├── ArnavRupde.md ├── Chibi-Shem.md ├── ChristianMae.md ├── GouravSomani.md ├── JenimPatel.md ├── README.md ├── ShivaniMishra.md ├── Ujjwal0501.md ├── imvpn22.md ├── kartikey-singh.md ├── kausha15.md ├── linehk.md ├── littlestar642.md ├── rajshah9914.md ├── rishabhkumar112.md ├── samiksha.md ├── sourabhvarshney111.md └── worm4047.md └── resources ├── 100daysofcode.md ├── BeginContribute.md ├── Blockchain.md ├── CommandLine(cmd).md ├── DeepLearning with Neural.md ├── GitRepo_ML.md ├── Ios_libraries.md ├── ML_Dataset.md ├── Machine_Learning.md ├── Mapbox.md ├── OpenAI.md ├── OpenCV.md ├── README.md ├── Scrollmagic.md ├── Shuffle_String.md ├── Tiltedpage.md ├── Wargames-linux-tutorial.md ├── data_science.md ├── deeplearning.md ├── freecodecamp.md ├── learnToCodeWithMe.md ├── python_crash_course.md └── theschoolofai.md /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Program/C#/hello_world_bvdwalt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/C#/hello_world_bvdwalt.cs -------------------------------------------------------------------------------- /Program/C#/hello_world_nlsum1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/C#/hello_world_nlsum1.cs -------------------------------------------------------------------------------- /Program/C++/Hello_World_ChristianTW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/C++/Hello_World_ChristianTW.cpp -------------------------------------------------------------------------------- /Program/C++/Love_calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/C++/Love_calculator.cpp -------------------------------------------------------------------------------- /Program/C++/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/C++/c++ -------------------------------------------------------------------------------- /Program/C++/helloWorldAdityaNeel.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | 4 | int main(){ 5 | cout<<"Hello World"; 6 | } 7 | -------------------------------------------------------------------------------- /Program/C++/hello_world_Ujjwal0501.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/C++/hello_world_Ujjwal0501.cpp -------------------------------------------------------------------------------- /Program/C++/hello_world_dushivani.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/C++/hello_world_dushivani.cpp -------------------------------------------------------------------------------- /Program/C++/hello_world_ikad95.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(){ 4 | std::cout<<"Hello World\n"; 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /Program/C++/hello_world_jenimPatel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/C++/hello_world_jenimPatel.cpp -------------------------------------------------------------------------------- /Program/C/hello_word_linehk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/C/hello_word_linehk.c -------------------------------------------------------------------------------- /Program/C/hello_world_christianmae.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | main(){ 4 | printf("Hello, World!"); 5 | } 6 | -------------------------------------------------------------------------------- /Program/GO/hello_world_bvdwalt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/GO/hello_world_bvdwalt.go -------------------------------------------------------------------------------- /Program/GO/hello_world_julesmike.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/GO/hello_world_julesmike.go -------------------------------------------------------------------------------- /Program/GO/hello_world_kartikey-singh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/GO/hello_world_kartikey-singh.go -------------------------------------------------------------------------------- /Program/Java/hello_world_Chibi-Shem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Java/hello_world_Chibi-Shem.java -------------------------------------------------------------------------------- /Program/Java/hello_world_bvdwalt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Java/hello_world_bvdwalt.java -------------------------------------------------------------------------------- /Program/Java/hello_world_jaynilshah.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Java/hello_world_jaynilshah.java -------------------------------------------------------------------------------- /Program/ObjectiveC/hello_world_darkang3lz92.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/ObjectiveC/hello_world_darkang3lz92.m -------------------------------------------------------------------------------- /Program/Python/hello_world_ArnavRupde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Python/hello_world_ArnavRupde.py -------------------------------------------------------------------------------- /Program/Python/hello_world_Chibi-Shem.py: -------------------------------------------------------------------------------- 1 | print("Hello World") -------------------------------------------------------------------------------- /Program/Python/hello_world_KunalKatariya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Python/hello_world_KunalKatariya.py -------------------------------------------------------------------------------- /Program/Python/hello_world_christianmae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Python/hello_world_christianmae.py -------------------------------------------------------------------------------- /Program/Python/hello_world_jbmills327.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Python/hello_world_jbmills327.py -------------------------------------------------------------------------------- /Program/Python/hello_world_kausha15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Python/hello_world_kausha15.py -------------------------------------------------------------------------------- /Program/Python/hello_world_rajshah9914.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Python/hello_world_rajshah9914.py -------------------------------------------------------------------------------- /Program/R/hello_world_sourabhvarshney111.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/R/hello_world_sourabhvarshney111.r -------------------------------------------------------------------------------- /Program/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/README.md -------------------------------------------------------------------------------- /Program/Ruby/hello_world.rb: -------------------------------------------------------------------------------- 1 | puts 'Hello world' 2 | -------------------------------------------------------------------------------- /Program/SQL/hello_world_sql_ThomasChr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/SQL/hello_world_sql_ThomasChr.sql -------------------------------------------------------------------------------- /Program/Scala/hello_world_sourabhvarshney111.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/Scala/hello_world_sourabhvarshney111.scala -------------------------------------------------------------------------------- /Program/assembly/hello_world_raymondthedev.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/assembly/hello_world_raymondthedev.asm -------------------------------------------------------------------------------- /Program/helloWorld.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/helloWorld.dart -------------------------------------------------------------------------------- /Program/hello_world_miralp241.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/hello_world_miralp241.c -------------------------------------------------------------------------------- /Program/javascript/hello-world-imvpn22.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/javascript/hello-world-imvpn22.js -------------------------------------------------------------------------------- /Program/javascript/hello-world-mariogmz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/javascript/hello-world-mariogmz.html -------------------------------------------------------------------------------- /Program/javascript/hello_world_keshavgoyal2807.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/javascript/hello_world_keshavgoyal2807.js -------------------------------------------------------------------------------- /Program/javascript/hello_world_littlestar642.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/javascript/hello_world_littlestar642.js -------------------------------------------------------------------------------- /Program/javascript/hello_world_rishabhkumar112.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/javascript/hello_world_rishabhkumar112.js -------------------------------------------------------------------------------- /Program/javascript/hello_world_worm4047: -------------------------------------------------------------------------------- 1 | console.log("Hello world"); 2 | -------------------------------------------------------------------------------- /Program/php/Hello_World_GouravSomani.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Program/php/hello_world_nadimattari.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/php/hello_world_nadimattari.php -------------------------------------------------------------------------------- /Program/python/hello_world_mano.py: -------------------------------------------------------------------------------- 1 | print("Hello World!") -------------------------------------------------------------------------------- /Program/python/hello_world_virenb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/python/hello_world_virenb.py -------------------------------------------------------------------------------- /Program/python/python.py: -------------------------------------------------------------------------------- 1 | print("Hello World") -------------------------------------------------------------------------------- /Program/python3/hello_world_shravankumar9892.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/Program/python3/hello_world_shravankumar9892.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/README.md -------------------------------------------------------------------------------- /competitive_programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/competitive_programming.md -------------------------------------------------------------------------------- /profiles/AJV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/AJV.md -------------------------------------------------------------------------------- /profiles/ArnavRupde.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/ArnavRupde.md -------------------------------------------------------------------------------- /profiles/Chibi-Shem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/Chibi-Shem.md -------------------------------------------------------------------------------- /profiles/ChristianMae.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/ChristianMae.md -------------------------------------------------------------------------------- /profiles/GouravSomani.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/GouravSomani.md -------------------------------------------------------------------------------- /profiles/JenimPatel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/JenimPatel.md -------------------------------------------------------------------------------- /profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/README.md -------------------------------------------------------------------------------- /profiles/ShivaniMishra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/ShivaniMishra.md -------------------------------------------------------------------------------- /profiles/Ujjwal0501.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/Ujjwal0501.md -------------------------------------------------------------------------------- /profiles/imvpn22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/imvpn22.md -------------------------------------------------------------------------------- /profiles/kartikey-singh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/kartikey-singh.md -------------------------------------------------------------------------------- /profiles/kausha15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/kausha15.md -------------------------------------------------------------------------------- /profiles/linehk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/linehk.md -------------------------------------------------------------------------------- /profiles/littlestar642.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/littlestar642.md -------------------------------------------------------------------------------- /profiles/rajshah9914.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/rajshah9914.md -------------------------------------------------------------------------------- /profiles/rishabhkumar112.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/rishabhkumar112.md -------------------------------------------------------------------------------- /profiles/samiksha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/samiksha.md -------------------------------------------------------------------------------- /profiles/sourabhvarshney111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/sourabhvarshney111.md -------------------------------------------------------------------------------- /profiles/worm4047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/profiles/worm4047.md -------------------------------------------------------------------------------- /resources/100daysofcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/100daysofcode.md -------------------------------------------------------------------------------- /resources/BeginContribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/BeginContribute.md -------------------------------------------------------------------------------- /resources/Blockchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/Blockchain.md -------------------------------------------------------------------------------- /resources/CommandLine(cmd).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/CommandLine(cmd).md -------------------------------------------------------------------------------- /resources/DeepLearning with Neural.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/DeepLearning with Neural.md -------------------------------------------------------------------------------- /resources/GitRepo_ML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/GitRepo_ML.md -------------------------------------------------------------------------------- /resources/Ios_libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/Ios_libraries.md -------------------------------------------------------------------------------- /resources/ML_Dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/ML_Dataset.md -------------------------------------------------------------------------------- /resources/Machine_Learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/Machine_Learning.md -------------------------------------------------------------------------------- /resources/Mapbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/Mapbox.md -------------------------------------------------------------------------------- /resources/OpenAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/OpenAI.md -------------------------------------------------------------------------------- /resources/OpenCV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/OpenCV.md -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/README.md -------------------------------------------------------------------------------- /resources/Scrollmagic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/Scrollmagic.md -------------------------------------------------------------------------------- /resources/Shuffle_String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/Shuffle_String.md -------------------------------------------------------------------------------- /resources/Tiltedpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/Tiltedpage.md -------------------------------------------------------------------------------- /resources/Wargames-linux-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/Wargames-linux-tutorial.md -------------------------------------------------------------------------------- /resources/data_science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/data_science.md -------------------------------------------------------------------------------- /resources/deeplearning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/deeplearning.md -------------------------------------------------------------------------------- /resources/freecodecamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/freecodecamp.md -------------------------------------------------------------------------------- /resources/learnToCodeWithMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/learnToCodeWithMe.md -------------------------------------------------------------------------------- /resources/python_crash_course.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/python_crash_course.md -------------------------------------------------------------------------------- /resources/theschoolofai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlestar642/hacktoberfest-beginners/HEAD/resources/theschoolofai.md --------------------------------------------------------------------------------