├── code ├── cpp │ ├── sample.txt │ ├── sample1.txt │ ├── Binarytodecimal.cpp │ ├── Copy_one_file_to_sec_remove_whitespaces │ ├── fraction.cpp │ ├── Copy_file_remove_whitespaces.cpp │ ├── subset_sum_problem.cpp │ ├── 0_1_knapsack.cpp │ ├── factorialtrailingzeroes.cpp │ ├── randomgenerator.cpp │ ├── SequentialSearchChar │ │ └── main.cpp │ ├── partition_equal_subset_sum.cpp │ ├── caesarCipher.cpp │ └── calc_curv.c ├── php │ ├── Bypass-phpuploader-with-PHP-GD │ │ ├── readme.txt │ │ ├── sample.jpg │ │ └── README.md │ ├── for-loop.php │ ├── Autologin-FreeBiznet │ │ ├── login │ │ ├── README.md │ │ └── login.php │ ├── phpshell-checker │ │ └── README.md │ ├── array.php │ ├── PHP-CRUD │ │ ├── config │ │ │ ├── database.php │ │ │ ├── readme.md │ │ │ └── database.sql │ │ ├── action │ │ │ ├── delete.php │ │ │ ├── update.php │ │ │ ├── readme.md │ │ │ └── insert.php │ │ ├── readme.md │ │ ├── index.php │ │ ├── new.php │ │ └── list.php │ └── switchCase ├── java │ ├── java-crypt │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── img │ │ │ │ └── githublogo.png │ │ ├── target │ │ │ └── classes │ │ │ │ ├── img │ │ │ │ └── githublogo.png │ │ │ │ └── com │ │ │ │ └── code │ │ │ │ └── crypt │ │ │ │ ├── index.class │ │ │ │ ├── index$1.class │ │ │ │ ├── index$2.class │ │ │ │ ├── index$3.class │ │ │ │ ├── index$4.class │ │ │ │ ├── index$5.class │ │ │ │ ├── index$6.class │ │ │ │ ├── index$7.class │ │ │ │ ├── index$8.class │ │ │ │ ├── index$9.class │ │ │ │ ├── index$10.class │ │ │ │ ├── index$11.class │ │ │ │ ├── index$12.class │ │ │ │ ├── index$13.class │ │ │ │ ├── index$14.class │ │ │ │ ├── index$15.class │ │ │ │ ├── index$16.class │ │ │ │ └── index$17.class │ │ ├── pom.xml │ │ └── .project │ ├── kubus.java │ ├── SearchValueMaxMin.java │ ├── Reverse.java │ ├── ReverseArray.java │ ├── ShellSort.java │ ├── lockerPuzzle.java │ ├── BubbleSort.java │ ├── countingSort.java │ ├── maxValue.java │ ├── Armstrongnum.java │ ├── FutureInvestmentValue.java │ ├── KadanesAlgo.java │ ├── Sieve_of_Eratosthenes.java │ ├── RecursiveBinarySearch.java │ ├── QuickSort.java │ └── Backtracking │ │ ├── swap.java │ │ └── unique_subset.java ├── Html_CSS │ ├── 4c24b759d3feb871d49b814525ea99357699c23d.zip │ ├── simpleclock-build-html-css-js │ │ ├── style.css │ │ ├── clock.markdown │ │ └── script.js │ ├── Navbar Basic │ │ ├── assets │ │ │ └── js │ │ │ │ └── script.js │ │ └── index.html │ └── forms.html ├── javascript │ ├── face-detector-js │ │ ├── models │ │ │ ├── mtcnn_model-shard1 │ │ │ ├── age_gender_model-shard1 │ │ │ ├── face_expression_model-shard1 │ │ │ ├── face_landmark_68_model-shard1 │ │ │ ├── face_recognition_model-shard1 │ │ │ ├── face_recognition_model-shard2 │ │ │ ├── ssd_mobilenetv1_model-shard1 │ │ │ ├── ssd_mobilenetv1_model-shard2 │ │ │ ├── tiny_face_detector_model-shard1 │ │ │ └── face_landmark_68_tiny_model-shard1 │ │ └── index.html │ ├── javascript-snippet │ │ ├── monkeyTalk.js │ │ └── simple_kalkulator.md │ ├── react-components │ │ └── jsx-buttons.jsx │ ├── vue-components │ │ └── HacktoberFest.vue │ ├── popcat.js │ └── doublylinkedlist.js ├── python │ ├── randomQuotes.py │ ├── hexagon.py │ ├── ShellSort.py │ ├── rafi_python │ │ ├── Rafi_ooppython.py │ │ └── Rafi_simplecalculator.py │ ├── caesar_cipher.py │ ├── face_recognition-python │ │ ├── Read.md │ │ └── main.py │ ├── input_number.py │ ├── count_program.py │ └── partitionlist.py ├── SQL │ └── mysql-snippet │ │ └── mysql_auto_leading_id.sql ├── any │ ├── go-snippet │ │ └── simple-http-server.md │ └── htaccess_equivalent_laravel_in_openlitespeed_config ├── Bash │ ├── Metasploit-Go │ │ ├── README.md │ │ └── Installer.sh │ └── jekyll-auto-tools.sh ├── go │ ├── 01_helloWorld.go │ └── 02_deklarasiVariabel.go └── Arduino │ └── SwitchCaseSerialArduino.ino ├── renovate.json ├── img └── favicon.png ├── .github ├── labeler.yml └── workflows │ ├── contrib-bot.yml │ ├── manual.yml │ ├── label.yml │ └── merge.yml ├── profile ├── jax.md ├── dito.md ├── vikry.md ├── nana.md ├── VVikry.md ├── Bagus.md ├── ekotriono.md ├── vitriawidiasari.md ├── genta.md ├── Putri.md ├── Rama.md ├── dzakiafif.md ├── ferdyhw.md ├── DennyAS.md ├── indrapalijama.md ├── ansel.md ├── dwiki.md ├── Andy-Ra.md ├── Tatma.md ├── Hafitz.md ├── Salimaja.md ├── wahyu.md ├── Anissa.md ├── Deyooo.MD ├── Khai.md ├── leonanta.md ├── dandy.md ├── BagusW.md ├── azkaainulmaarij.md ├── Nikko.md ├── Novanazizr.md ├── riyaraa.md ├── Icatpojan.md ├── fathur.md ├── icatpojan.md ├── Fanny.md ├── Kronzii88.md ├── agungsp.md ├── ialexanderbrito.md ├── savuckovi.md ├── farh.md ├── naji.md ├── dicky.md ├── fatur.md ├── Ridwan.md ├── Teddi.md ├── auliarama ├── haikelz.md ├── ikhsan.md ├── Albi.md ├── pajri.md ├── rasyid.md ├── yogadep.md ├── Defri.md ├── gavra ├── odorifqi.md ├── rapli.md ├── Ikhari.md ├── Yusril.md ├── frhn.md ├── rayhan.md ├── FebrianS.md ├── alvinzulham.md ├── barbiel.md ├── elbasrie.md ├── hafid.md ├── Dika.md ├── abdulmuttaqin.md ├── billy.md ├── danu.md ├── Denny.md ├── Fauzan.md ├── alief_ramadhan.md ├── fathir.md ├── ricky.md ├── roarrraor.md ├── DeepyamanDas.md ├── Erik.md ├── Ludovico.md ├── Tuttzz.md ├── gemaekashantiputri.md ├── Ikhwan.md ├── ceritaq ├── fawwaz.md ├── rizalsimbolon.md ├── rizkiramadhanx.md ├── yogafirdaus.md ├── fihryal.dm ├── gimenz.md ├── kevinrp.md ├── nandanugraha.md ├── naufalsyuhur.md ├── puspakirana.md ├── Jay.md ├── RaflyMaulana.md ├── fatih.md ├── galihssaputra.md ├── prdnaw.md ├── rivaldo15.md ├── Ghani.md ├── MuamarHilmi.md ├── dzaki.md ├── shafhan.md ├── afdlol.md ├── arief-samuel.md ├── danish.md ├── wildan.md ├── AdiAndoyo.md ├── Devi Apriyanto.md ├── nanda.md ├── rikkyarisendi.md ├── rizkimcitra.md ├── Gagassurya19.md ├── lukman.md ├── mudzikal.md ├── neno.md ├── romaaji.md ├── sa.md ├── doniambarita.md ├── Candy.md ├── antareza.md ├── dimasanugerahp.md ├── syofyanzuhad.md ├── David ├── Feryadialoi.md ├── faiznurullah.md ├── Yodi.md ├── dwiky.md ├── ikhsan15.md ├── Bonifasius.md ├── Christian.md ├── MuhammadSafwan.md ├── agungd3v.md ├── bagendeh.md ├── fariz.md ├── gathan.md ├── irfanyadi.md ├── surya.md ├── Fajar.md ├── silvi.md ├── usmankhabilah.md ├── DimasSaputra.md ├── Pabodha.md ├── Reidho.md ├── vinz15 ├── Abay.md ├── asril.md ├── dwidhanis.md ├── Kingkin.md ├── Rizki.md ├── faizalanwar.md ├── hasobi.md ├── irhamms.md ├── mekel.md ├── krpauto.md ├── Darussalam.md ├── adialamsyahardi.md ├── isallkun.md ├── RafiNurArdiansyah.md ├── fatik.md ├── AthallahDzaki.md ├── ayatullah.md ├── muhamad_imam_taufik_febriyana.md ├── hasinilmalik.md ├── reymunda.md ├── SeptiyanNugroho.md ├── yaza.md ├── arip.md ├── samodra.md ├── jul.md ├── adityamputra.md ├── vaibhav.md ├── rizkytegar.md ├── Restu.md ├── irvanhakim.md ├── st4rz.md ├── elfinsanjaya └── Noval.md ├── .idea ├── vcs.xml ├── .gitignore ├── modules.xml └── Hacktoberfest-Indonesia-2021.iml ├── js ├── app.js └── services.js ├── TEMPLATE_PROFILE.MD ├── Afwan.md └── TEMPLATE_CODE.MD /code/cpp/sample.txt: -------------------------------------------------------------------------------- 1 | Hacktoberfest2021 Riya Tyagi -------------------------------------------------------------------------------- /code/cpp/sample1.txt: -------------------------------------------------------------------------------- 1 | Hacktoberfest2021RiyaTyagii -------------------------------------------------------------------------------- /code/php/Bypass-phpuploader-with-PHP-GD/readme.txt: -------------------------------------------------------------------------------- 1 | php gd.php gambar.jpg 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "config:base" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /code/php/for-loop.php: -------------------------------------------------------------------------------- 1 | "; 4 | } 5 | ?> -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/img/favicon.png -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- 1 | hacktoberfest-accepted: 2 | - '*' 3 | hacktoberfest: 4 | - '*' 5 | hacktoberfest2021: 6 | - '*' 7 | -------------------------------------------------------------------------------- /code/php/Autologin-FreeBiznet/login: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | for (( ; ; )) 3 | do 4 | 5 | php login.php 6 | echo 7 | sleep 2s 8 | done 9 | -------------------------------------------------------------------------------- /code/java/java-crypt/.settings/org.eclipse.jdt.apt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.apt.aptEnabled=false 3 | -------------------------------------------------------------------------------- /code/php/phpshell-checker/README.md: -------------------------------------------------------------------------------- 1 | # phpshell-checker 2 | phpshell-checker 3 | 4 | ## Ribet mau check-in shell di cli ?? 5 | ## Web Version solusinya 6 | -------------------------------------------------------------------------------- /code/java/java-crypt/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /code/java/java-crypt/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /code/php/array.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /code/php/Bypass-phpuploader-with-PHP-GD/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/php/Bypass-phpuploader-with-PHP-GD/sample.jpg -------------------------------------------------------------------------------- /code/java/java-crypt/src/main/java/img/githublogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/src/main/java/img/githublogo.png -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/img/githublogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/img/githublogo.png -------------------------------------------------------------------------------- /code/Html_CSS/4c24b759d3feb871d49b814525ea99357699c23d.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/Html_CSS/4c24b759d3feb871d49b814525ea99357699c23d.zip -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/mtcnn_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/mtcnn_model-shard1 -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$1.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$2.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$3.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$4.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$5.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$6.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$7.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$8.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$9.class -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/age_gender_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/age_gender_model-shard1 -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$10.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$11.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$12.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$12.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$13.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$13.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$14.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$14.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$15.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$15.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$16.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$16.class -------------------------------------------------------------------------------- /code/java/java-crypt/target/classes/com/code/crypt/index$17.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/java/java-crypt/target/classes/com/code/crypt/index$17.class -------------------------------------------------------------------------------- /profile/jax.md: -------------------------------------------------------------------------------- 1 | ## Hello I am jax_bcd 2 | 3 | come pull req to my github account for Hacktoberfest xixixixixix 4 | - https://github.com/jaxBCD/Zeebsploit 5 | 6 | - Surabaya 7 | - python enjoyers 8 | 9 | -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/face_expression_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/face_expression_model-shard1 -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/face_landmark_68_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/face_landmark_68_model-shard1 -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/face_recognition_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/face_recognition_model-shard1 -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/face_recognition_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/face_recognition_model-shard2 -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/ssd_mobilenetv1_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/ssd_mobilenetv1_model-shard1 -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/ssd_mobilenetv1_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/ssd_mobilenetv1_model-shard2 -------------------------------------------------------------------------------- /code/python/randomQuotes.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | url = 'https://api.quotable.io/random' 4 | 5 | r = requests.get(url) 6 | quote = r.json() 7 | print(quote['content']) 8 | print(' -',quote['author']) 9 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/tiny_face_detector_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/tiny_face_detector_model-shard1 -------------------------------------------------------------------------------- /code/javascript/face-detector-js/models/face_landmark_68_tiny_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdciabdul/Hacktoberfest-Indonesia-2021/HEAD/code/javascript/face-detector-js/models/face_landmark_68_tiny_model-shard1 -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /code/Html_CSS/simpleclock-build-html-css-js/style.css: -------------------------------------------------------------------------------- 1 | html,body { 2 | margin: 0; 3 | padding: 0; 4 | height: 100%; 5 | } 6 | 7 | body { 8 | display: flex; 9 | align-items: center; 10 | justify-content: center; 11 | background: #11111d; 12 | } -------------------------------------------------------------------------------- /code/Html_CSS/Navbar Basic/assets/js/script.js: -------------------------------------------------------------------------------- 1 | let navToggle = document.querySelector('nav .navbar-toggler input'); 2 | 3 | navToggle.addEventListener('click', function () { 4 | document.querySelector('nav .navbar-collapse').classList.toggle('active'); 5 | }); -------------------------------------------------------------------------------- /code/php/PHP-CRUD/config/database.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /code/python/hexagon.py: -------------------------------------------------------------------------------- 1 | from turtle import * 2 | 3 | colors = ["red","purple","blue","green","yellow","orange"] 4 | 5 | bgcolor("black") 6 | 7 | for x in range (360): 8 | 9 | pencolor(colors[x%6]) width(x/100+1) 10 | 11 | forward(x) 12 | 13 | left(49) 14 | 15 | speed(1000) 16 | -------------------------------------------------------------------------------- /code/Html_CSS/simpleclock-build-html-css-js/clock.markdown: -------------------------------------------------------------------------------- 1 | clock 2 | ----- 3 | 4 | 5 | A [Pen](https://codepen.io/novanazizr/pen/RwZwgqp) by [Novan Aziz Ramadhan](https://codepen.io/novanazizr) on [CodePen](https://codepen.io). 6 | 7 | [License](https://codepen.io/novanazizr/pen/RwZwgqp/license). -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- 1 | /** 2 | * forks Module 3 | * 4 | * Gets forks data for a Github repository 5 | */ 6 | (function() { 7 | // Self executing function to ensure that code is not declared 8 | // in the global scope 9 | angular.module('forks', ['ui.bootstrap', 'forksControllers', 'forksDirectives']); 10 | })(); -------------------------------------------------------------------------------- /code/java/kubus.java: -------------------------------------------------------------------------------- 1 | public class kubus { 2 | public static void main(String[] args) { 3 | for (int i = 0; i < 5; i++) { 4 | for (int j = 0; j < 10; j++) { 5 | System.out.print("*"); 6 | } 7 | System.out.println(""); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code/SQL/mysql-snippet/mysql_auto_leading_id.sql: -------------------------------------------------------------------------------- 1 | /* TRX1409240002 */ 2 | 3 | SELECT 4 | CONCAT( 5 | 'TRX', 6 | DATE_FORMAT(CURDATE(), '%y%m%d'), 7 | IF( 8 | SUBSTR(MAX(id),8,2) = DATE_FORMAT(CURDATE(), '%d'), 9 | LPAD( 10 | SUBSTR(MAX(id),10,4) + 1, 11 | 4, 12 | 0 13 | ), 14 | '0001' 15 | ) 16 | ) AS id 17 | FROM 18 | t_penjualan 19 | -------------------------------------------------------------------------------- /profile/dito.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Namamu 4 | dito laksono 5 | 6 | ### Provisi & Kota 7 | Jawa Timur & Surabaya 8 | 9 | 10 | ### Sekolah / Akademik 11 | - sudah lulus 12 | 13 | ### Hobi 14 | -ngegame 15 | 16 | ### Bahasa Pemograman 17 | - vue 18 | - php 19 | - node js 20 | - python 21 | 22 | ### Profile Link 23 | 24 | [Dito](https://github.com/jimmyfish) 25 | ``` 26 | -------------------------------------------------------------------------------- /code/Html_CSS/forms.html: -------------------------------------------------------------------------------- 1 |

HTML Forms

2 | 3 |
4 |
5 |
6 |
7 |

8 | 9 |
10 | -------------------------------------------------------------------------------- /code/php/PHP-CRUD/action/delete.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /code/any/go-snippet/simple-http-server.md: -------------------------------------------------------------------------------- 1 | Go Simple HTTP Server 2 | 3 | ```go 4 | package main 5 | 6 | import ( 7 | "fmt" 8 | "net/http" 9 | ) 10 | 11 | func main() { 12 | http.HandleFunc("/", HelloWorld) 13 | http.ListenAndServe(":5000", nil) 14 | } 15 | 16 | func HelloWorld(w http.ResponseWriter, r *http.Request) { 17 | fmt.Fprintf(w, "

It works!

") 18 | } 19 | ``` 20 | -------------------------------------------------------------------------------- /code/javascript/javascript-snippet/monkeyTalk.js: -------------------------------------------------------------------------------- 1 | // Fungsi monkeytalk 2 | // Solusi dari codewars kata 6 3 | 4 | function monkeyTalk(phrase){ 5 | 6 | let monkey = phrase.split(' ').map((i)=>{ 7 | return i[0].match(/[aeiou]/i)? 'eek':'ook' 8 | }) 9 | 10 | monkey[0]= monkey[0].charAt(0).toUpperCase() + monkey[0].slice(1) 11 | 12 | return monkey.join(' ') + "." 13 | 14 | } 15 | -------------------------------------------------------------------------------- /profile/nana.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Intan Irnanda 4 | 5 | 6 | ### Provisi & Kota 7 | Jawa Timur & surabaya 8 | 9 | 10 | ### Sekolah / Akademik 11 | - sudah lulus 12 | 13 | ### Hobi 14 | 15 | - code, eat, sleep, repeat 16 | 17 | ### Bahasa Pemograman 18 | 19 | -javascript 20 | - react js 21 | 22 | ### Profile Link 23 | 24 | [Nana](https://github.com/intanirnanda5796) 25 | ``` 26 | -------------------------------------------------------------------------------- /profile/VVikry.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Fikri EL 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa barat, Bekais 9 | 10 | ### Sekolah / Akademik 11 | 12 | IDN BS 13 | 14 | ### Hobi 15 | 16 | -Nonto 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Flutter 21 | - Java 22 | - HTML 23 | 24 | ### Project 25 | 26 | 27 | ### Profile Link 28 | 29 | [SeptiyanNugroho](https://github.com/FikriElGhaz) 30 | -------------------------------------------------------------------------------- /profile/Bagus.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Bagus Dwi P 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat, Bekasi 9 | 10 | ### Sekolah / Akademik 11 | 12 | Otodidak 13 | 14 | ### Hobi 15 | 16 | - Mancing 17 | - Mgondof 18 | - Main Game 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Nodejs 23 | - Java 24 | 25 | ### Project 26 | 27 | 28 | ### Profile Link 29 | 30 | [ShzRgb](https://github.com/ShzRGB) 31 | -------------------------------------------------------------------------------- /profile/ekotriono.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Eko Triono 4 | 5 | ### Provisi & Kota 6 | 7 | Jawa Timur, Malang 8 | 9 | ### Sekolah / Akademik 10 | 11 | S1 12 | 13 | ### Hobi 14 | 15 | - Makan 16 | - Code 17 | - Tidur 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - PHP 23 | - Node JS 24 | - Python 25 | - GO 26 | 27 | 28 | 29 | ### Profile Link 30 | 31 | [Eko Triono](https://github.com/ekotriono) 32 | -------------------------------------------------------------------------------- /profile/vitriawidiasari.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | vitria Widiasari 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah, Batang 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - phyton 21 | - HTML 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [vitriawidiasari](https://github.com/vitriawidiasari) 30 | -------------------------------------------------------------------------------- /profile/genta.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Genta 3 | 4 | ### Provisi & Kota 5 | 6 | Jawa Barat , Bogor 7 | 8 | ### Sekolah / Akademik 9 | Pondok IT 10 | 11 | ### Hobi 12 | 13 | - Ngoding 14 | 15 | 16 | ### Bahasa Pemograman 17 | 18 | - PHP 19 | - Javascript 20 | - SQL 21 | - HTML 22 | 23 | ### Project 24 | 25 | Point of Sales 26 | 27 | ### Profile Link 28 | 29 | [MuhGenta19](https://github.com/MuhGenta19) 30 | -------------------------------------------------------------------------------- /.github/workflows/contrib-bot.yml: -------------------------------------------------------------------------------- 1 | on: [push, pull_request] 2 | 3 | jobs: 4 | contrib-readme-job: 5 | runs-on: ubuntu-latest 6 | name: A job to automate contrib in readme 7 | steps: 8 | - name: Contribute List 9 | uses: akhilmhdh/contributors-readme-action@v2.2.1 10 | env: 11 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 12 | 13 | -------------------------------------------------------------------------------- /code/php/Autologin-FreeBiznet/README.md: -------------------------------------------------------------------------------- 1 | # AUTO LOGIN @FreeBiznetHotspot 2 | #### Bebas ganti ip&mac di line 10 file login.php 3 | #### looping pake bash wkwk, jalanin pake bash 4 | ```` 5 | ./login 6 | atau 7 | bash login 8 | ```` 9 | #### Tested on @freeBiznetHotspot 10 | #### ip default login FreeBiznet biasanya 10.10.10.10/login, kalo gabisa, mungkin beda ip 11 | # BARU NYOBA BIZNET, Mungkin yang laen bisa 12 | -------------------------------------------------------------------------------- /profile/Putri.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Andiani Putri 3 | 4 | ### Provinsi & Kota 5 | 6 | Batam, Kepulauan Riau 7 | 8 | ### Sekolah / Akademik 9 | 10 | Politeknik Negeri Batam 11 | 12 | ### Hobi 13 | 14 | Play airdrop 15 | 16 | 17 | ### Bahasa Pemograman 18 | 19 | - PHP 20 | - JavaScript 21 | - Java 22 | 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | (https://github.com/andianiputri) 31 | -------------------------------------------------------------------------------- /profile/Rama.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Ramaa 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Sumatera Utara , Medan 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Ngeteh 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - C/C++ 21 | - Python 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [Rama](https://github.com/ramadh-an) 30 | -------------------------------------------------------------------------------- /TEMPLATE_PROFILE.MD: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Namamu 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | 10 | 11 | ### Sekolah / Akademik 12 | - 13 | 14 | ### Hobi 15 | 16 | - 17 | - 18 | 19 | ### Bahasa Pemograman 20 | 21 | - 22 | - 23 | - 24 | 25 | ### Project 26 | 27 | - 28 | - 29 | - 30 | 31 | ### Profile Link 32 | 33 | [Nama](https://github.com/usernamekamu) 34 | ``` 35 | -------------------------------------------------------------------------------- /profile/dzakiafif.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Ahmad Dzaki Afif 3 | 4 | ### Provisi & Kota 5 | 6 | Jawa Timur , Pasuruan 7 | 8 | ### Sekolah / Akademik 9 | Sudah lulus S1 10 | 11 | ### Hobi 12 | 13 | - Begadang 14 | - makan 15 | - tidur 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - node js 21 | - HTML 22 | - php 23 | - golang 24 | - react 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [Dzaki Afif](https://github.com/dzakiafif) 31 | -------------------------------------------------------------------------------- /profile/ferdyhw.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Ferdy Hendriawan 4 | 5 | ### Provinsi & Kota 6 | 7 | Jawa Barat, Bandung 8 | 9 | ### Sekolah / Akademik 10 | 11 | SMK Negeri 1 Cimahi 12 | 13 | ### Hobi 14 | 15 | - Main Game 16 | - Nonton film 17 | 18 | ### Bahasa Pemograman 19 | 20 | - PHP 21 | - Javascript 22 | - Java 23 | 24 | ### Project 25 | 26 | - 27 | 28 | ### Profile Link 29 | 30 | [Ferdy Hendriawan](https://github.com/ferdyhw) 31 | -------------------------------------------------------------------------------- /profile/DennyAS.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Denny A. Sinaga. 3 | 4 | ### Provinsi & Kota 5 | 6 | Sumatera Utara, Porsea 7 | 8 | ### Sekolah / Akademik 9 | 10 | - Institut Teknologi Del 11 | 12 | ### Hobi 13 | 14 | - Read a book. 15 | 16 | 17 | ### Bahasa Pemograman 18 | 19 | - PHP 20 | - JavaScript 21 | - Java 22 | - Python 23 | - C 24 | 25 | ### Project 26 | 27 | 28 | 29 | ### Profile Link 30 | 31 | [denny036](https://github.com/denny036) 32 | -------------------------------------------------------------------------------- /profile/indrapalijama.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Indra Palijama 4 | 5 | ### Provinsi & Kota 6 | 7 | DKI Jakarta, Jakarta Selatan 8 | 9 | ### Sekolah / Akademik 10 | 11 | S1 12 | 13 | ### Hobi 14 | 15 | - Makan 16 | - Nonton 17 | - Tidur 18 | - Jajan 19 | - Ngoding 20 | 21 | 22 | ### Bahasa Pemograman 23 | 24 | - Typescript 25 | - Javascript 26 | 27 | 28 | ### Profile Link 29 | 30 | [Indra Palijama](https://github.com/indrapalijama) 31 | -------------------------------------------------------------------------------- /code/javascript/react-components/jsx-buttons.jsx: -------------------------------------------------------------------------------- 1 | export default function Buton({ 2 | children, 3 | button = false, 4 | target = false, 5 | ahref = false, 6 | href = undefined, 7 | }) { 8 | return button ? ( 9 | 10 | ) : ahref && href ? ( 11 | !target ? ( 12 | {children} 13 | ) : ( 14 | {children} 15 | ) 16 | ) : null 17 | } 18 | -------------------------------------------------------------------------------- /profile/ansel.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Ansel 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Yogyakarta , Bantul 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - HTML 22 | - Python 23 | - Kotlin 24 | 25 | ### Project 26 | 27 | 28 | 29 | ### Profile Link 30 | 31 | [Nama](https://github.com/anselmusr) 32 | -------------------------------------------------------------------------------- /profile/dwiki.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Dwiki 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Jawa Timur, Malang 8 | 9 | 10 | ### Sekolah / Akademik 11 | - Politeknik Negeri Malang 12 | 13 | ### Hobi 14 | 15 | - 16 | - 17 | 18 | ### Bahasa Pemograman 19 | 20 | - PHP 21 | - 22 | - 23 | 24 | ### Project 25 | 26 | - 27 | - 28 | - 29 | 30 | ### Profile Link 31 | 32 | [Dwiki48](https://github.com/dwiki48) 33 | -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- 1 | on: [push, pull_request] 2 | 3 | 4 | 5 | jobs: 6 | contrib-readme-job: 7 | runs-on: ubuntu-latest 8 | name: A job to automate contrib in readme 9 | steps: 10 | - name: Contribute List 11 | uses: wow-actions/contributors-list@v1 12 | env: 13 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 14 | svgPath: CONTRIBUTORS.svg 15 | -------------------------------------------------------------------------------- /profile/Andy-Ra.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Andy-Ra 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Malang, Jawa Timur 9 | 10 | 11 | ### Sekolah / Akademik 12 | - 13 | 14 | ### Hobi 15 | - Menggacha 16 | - Tidur 17 | - Main Game 18 | 19 | ### Bahasa Pemograman 20 | - Java 21 | - Python 22 | - PHP 23 | 24 | ### Project 25 | - 26 | 27 | ### Profile Link 28 | 29 | [Andy-Ra](https://github.com/Andy-Ra) 30 | ``` 31 | -------------------------------------------------------------------------------- /profile/Tatma.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Muhammad Tatma 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Yogyakarta, Bantul 9 | 10 | ### Sekolah / Akademik 11 | 12 | ### Hobi 13 | 14 | - Coding 15 | - Futsal 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Java 21 | - HTML 22 | - CSS 23 | 24 | ### Project 25 | - 26 | 27 | 28 | ### Profile Link 29 | 30 | [Muhammad Tatma](https://github.com/MuhammadTatma) 31 | -------------------------------------------------------------------------------- /profile/Hafitz.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Hafitz Setya 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Jawa Timur, Kediri 10 | 11 | ### Sekolah / Akademik 12 | 13 | ### Hobi 14 | 15 | - Gaming 16 | - Music 17 | 18 | ### Bahasa Pemrograman 19 | 20 | - Python 21 | 22 | ### Project 23 | 24 | ### Profile Link 25 | 26 | [breakdowns](https://github.com/breakdowns) 27 | -------------------------------------------------------------------------------- /profile/Salimaja.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | E. Salim 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Asahan, Sumatera Utara 9 | 10 | ### Sekolah / Akademik 11 | Unimed 12 | 13 | ### Hobi 14 | 15 | Traveling 16 | Nonton 17 | 18 | ### Bahasa Pemograman 19 | 20 | Python 3 21 | HTML 22 | Css 23 | 24 | ### Project 25 | 26 | - 27 | - 28 | - 29 | 30 | ### Profile Link 31 | 32 | [E.Salim](https://github.com/Salimaja) 33 | -------------------------------------------------------------------------------- /profile/wahyu.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Wahyu Firmansyah 3 | 4 | ### Provisi & Kota 5 | 6 | Jawa Timur , Kota Kediri 7 | 8 | ### Sekolah / Akademik 9 | Universitas Nusantara PGRI Kediri 10 | 11 | ### Hobi 12 | 13 | - Main Game 14 | 15 | 16 | ### Bahasa Pemograman 17 | 18 | - Python 19 | - Arduino C++ 20 | 21 | ### Project 22 | 23 | [KRISocket](https://github.com/bywahjoe/KRIsocket) 24 | 25 | ### Profile Link 26 | 27 | [bywahjoe](https://github.com/bywahjoe) 28 | -------------------------------------------------------------------------------- /Afwan.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Afwan 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Nusa Tenggara Barat 9 | 10 | 11 | ### Sekolah / Akademik 12 | - Universitas Bumigora 13 | 14 | ### Hobi 15 | 16 | - Basket 17 | - 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Java 22 | - Html 23 | - 24 | 25 | ### Project 26 | 27 | - 28 | - 29 | - 30 | 31 | ### Profile Link 32 | 33 | [Nama](https://github.com/Waans14) 34 | ``` 35 | -------------------------------------------------------------------------------- /profile/Anissa.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Anissa Fauzia Isyanti 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah , Tegal 9 | 10 | ### Sekolah / Akademik 11 | SMKN 1 Adiwerna 12 | 13 | ### Hobi 14 | 15 | - Membaca 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - HTML 22 | - PHP 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/anissafauziaa) 31 | -------------------------------------------------------------------------------- /profile/Deyooo.MD: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Deyooo 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Jakarta, Jakarta 10 | 11 | ### Sekolah / Akademik 12 | 13 | Fresh Graduated 14 | 15 | ### Hobi 16 | 17 | - Ngobar, ngoding bareng 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - HTML 23 | - CSS 24 | - React.js 25 | 26 | ### Project 27 | 28 | ### Profile Link 29 | 30 | [Deyooo](https://github.com/deotamaaa) 31 | -------------------------------------------------------------------------------- /profile/Khai.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Khairul 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kuala Lumpur , Malaysia 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Computer Science 13 | 14 | ### Hobi 15 | 16 | - Badminton 17 | - Gaming 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Java 23 | - PHP 24 | - Python(Pemula) 25 | 26 | ### Project 27 | 28 | 29 | ### Profile Link 30 | 31 | [kai90s](https://github.com/kai90s) 32 | -------------------------------------------------------------------------------- /profile/leonanta.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Leonanta Pramudya Kusuma 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah, Jepara 9 | 10 | ### Sekolah / Akademik 11 | SMK 12 | 13 | ### Hobi 14 | 15 | - Nyuci motor 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - PHP 21 | - CSS 22 | - HTML 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [leoprananta](https://github.com/leoprananta) 31 | -------------------------------------------------------------------------------- /code/cpp/Binarytodecimal.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | void printDups(string str) 4 | { 5 | map count; 6 | for (int i = 0; i < str.length(); i++) 7 | count[str[i]]++; 8 | 9 | for (auto it : count) 10 | if (it.second > 1) 11 | cout << it.first << ", count = " << it.second< 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur , Sidoarjo 9 | 10 | ### Sekolah / Akademik 11 | 12 | - 13 | 14 | ### Hobi 15 | 16 | - Ngoding 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - PHP 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/danindraihya) 31 | -------------------------------------------------------------------------------- /profile/BagusW.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Bagus Wahyu Ari Pratama 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Yogyakarta, Sleman 9 | 10 | ### Sekolah / Akademik 11 | 12 | Universitas Mercu Buana Yogyakarta 13 | 14 | ### Hobi 15 | 16 | - Musik 17 | 18 | ### Bahasa Pemograman 19 | 20 | - HTML & CSS basics 21 | - PHP 22 | ### Project 23 | - Content Management System Panti Asuhan 24 | - Data Warehouse 25 | 26 | ### Profile Link 27 | 28 | [Bagus Wahyu Ari Pratama](https://github.com/baguswap) 29 | -------------------------------------------------------------------------------- /profile/azkaainulmaarij.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Azka Ainul Ma'arij 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Tengah , Pemalang 9 | 10 | ### Sekolah / Akademik 11 | Universitas Semarang 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Python 21 | 22 | ### Project 23 | 24 | 25 | ### Profile Link 26 | 27 | [Azka](https://github.com/noxlaw) 28 | -------------------------------------------------------------------------------- /profile/Nikko.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Nikko Enggaliano 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | DKI Jakarta, Jakarta 10 | 11 | ### Sekolah / Akademik 12 | 13 | ### Hobi 14 | 15 | - Once 16 | - Wizone 17 | 18 | ### Bahasa Pemograman 19 | 20 | - PHP 21 | - JS 22 | 23 | ### Project 24 | 25 | ### Profile Link 26 | 27 | [Nikko Enggaliano](https://github.com/nikkoenggaliano) 28 | -------------------------------------------------------------------------------- /profile/Novanazizr.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Novan Aziz Ramadhan 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | DKI Jakarta, Jakarta 9 | 10 | ### Sekolah / Akademik 11 | -Universitas Gunadarma 12 | 13 | ### Hobi 14 | 15 | - Main Game 16 | 17 | ### Bahasa Pemograman 18 | 19 | - HTML 20 | - CSS 21 | 22 | ### Project 23 | 24 | - 25 | - 26 | - 27 | 28 | ### Profile Link 29 | 30 | [Novan](https://github.com/novanazizr) 31 | -------------------------------------------------------------------------------- /profile/riyaraa.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Namamu 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Jakarta , Indonesia 10 | 11 | ### Sekolah / Akademik 12 | 13 | - 14 | 15 | ### Hobi 16 | 17 | - Problem Solving 18 | - Gaming 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - Typescript 24 | 25 | ### Project 26 | 27 | ### Profile Link 28 | 29 | [Rino](https://github.com/riyaraa) 30 | -------------------------------------------------------------------------------- /profile/Icatpojan.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Icatpojan 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Banten , Tangerang 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Salto 16 | - ngoding 17 | - renang 18 | - tidur 19 | - makan 20 | 21 | 22 | ### Bahasa Pemograman 23 | 24 | - Javascript 25 | - HTML 26 | - css 27 | - PHP 28 | 29 | ### Project 30 | 31 | 32 | 33 | ### Profile Link 34 | 35 | [Nama](https://github.com/icatpojan) 36 | -------------------------------------------------------------------------------- /profile/fathur.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Fathur 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jakarta Selatan, Jagakarsa 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMK 13 | 14 | ### Hobi 15 | 16 | - Ngopi 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Python 22 | - Kotlin 23 | 24 | ### Project 25 | 26 | - Absen menggunakan pengenalan wajah 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/dfr-hub) 31 | -------------------------------------------------------------------------------- /profile/icatpojan.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Icatpojan 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Banten , Tangerang 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Salto 16 | - ngoding 17 | - renang 18 | - tidur 19 | - makan 20 | 21 | 22 | ### Bahasa Pemograman 23 | 24 | - Javascript 25 | - HTML 26 | - css 27 | - PHP 28 | 29 | ### Project 30 | 31 | 32 | 33 | ### Profile Link 34 | 35 | [Nama](https://github.com/icatpojan) 36 | -------------------------------------------------------------------------------- /code/cpp/Copy_one_file_to_sec_remove_whitespaces: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | using namespace std; 5 | int main(){ 6 | fstream f1,f2; 7 | f1.open("sample.txt",ios::in); 8 | f2.open("sample1.txt",ios::out); 9 | if(!f1 || !f2) 10 | { 11 | cout<<"Unable to open the files. Exiting."; 12 | exit(0); 13 | } 14 | char ch; 15 | while(!f1.eof()) 16 | { 17 | f1>>ch; 18 | if(ch != ' ') 19 | { 20 | f2< 5 | 6 | ### Provisi & Kota 7 | 8 | Demak, Semarang 9 | 10 | ### Sekolah / Akademik 11 | SMK Miftahul Huda 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - HTML 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [Fanny](https://github.com/fanian26) 30 | -------------------------------------------------------------------------------- /profile/Kronzii88.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Ezyh Arofi 4 | 5 | 6 | 7 | ### Provinsi & Kota 8 | 9 | Jateng , Kota Semarang 10 | 11 | ### Sekolah / Akademik 12 | 13 | Polines 14 | 15 | ### Hobi 16 | 17 | - Begadang 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - PHP 23 | - Python 24 | 25 | ### Project 26 | 27 | ### Profile Link 28 | 29 | [Kronzii88](https://github.com/Kronzii88) 30 | -------------------------------------------------------------------------------- /profile/agungsp.md: -------------------------------------------------------------------------------- 1 | ### Nama 2 | 3 | > *__-__ Agung sesar pamungkas
* 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Provinsi , Kota 9 | > *__-__ Jawa barat, indramayu
* 10 | ### Sekolah / Akademik 11 | > *__-__ Sekolah Menengah kejuruan
* 12 | 13 | ### Hobi 14 | 15 | > *__-__ Olahraga
* 16 | > *__-__ Ngopi
* 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | > *__-__ Python
* 22 | 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [https://github.com/gitcomeon8] 31 | -------------------------------------------------------------------------------- /profile/ialexanderbrito.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Lukman Nul Hakim 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Brazil 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | 14 | ### Hobi 15 | 16 | - Programming 17 | - Gamer 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - HTML 23 | - CSS 24 | - React 25 | 26 | ### Project 27 | 28 | ### Profile Link 29 | 30 | [Alexander](https://github.com/ialexanderbrito) 31 | -------------------------------------------------------------------------------- /profile/savuckovi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Savus Vucus 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat , Bandung 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Game 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Java 21 | 22 | ### Project 23 | 24 | 25 | ### Profile Link 26 | 27 | [savuckovi](https://github.com/savuckovi) 28 | -------------------------------------------------------------------------------- /profile/farh.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Marcelino Derry Utomo 4 | 5 | 6 | 7 | ### Provinsi & Kota 8 | 9 | Jawa Barat, Bekasi 10 | 11 | ### Sekolah / Akademik 12 | 13 | SMKN Bekasi 14 | 15 | ### Hobi 16 | 17 | - badminton 18 | 19 | ### Bahasa Pemograman 20 | 21 | - PHP 22 | 23 | ### Project 24 | 25 | - Bot Bot My ID 26 | 27 | ### Profile Link 28 | 29 | [farhanalfayyadh](https://github.com/farhanalfayyadh) 30 | -------------------------------------------------------------------------------- /profile/naji.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3pls0de 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur, Situbondo 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMK Ibrahimy 1 Sukorejo 13 | 14 | ### Hobi 15 | 16 | - Main Game 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Java 22 | 23 | ### Project 24 | 25 | - Binary Search Tree 26 | 27 | 28 | ### Profile Link 29 | 30 | [Naji](https://github.com/3pls0de) -------------------------------------------------------------------------------- /profile/dicky.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Dicky 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Jambi, Jambi 10 | 11 | ### Sekolah / Akademik 12 | 13 | ### Hobi 14 | 15 | - Gaming 16 | - Music 17 | - Sport 18 | 19 | ### Bahasa Pemrograman 20 | 21 | - PHP 22 | - Javascript 23 | - Node.js 24 | - HTML 25 | - CSS 26 | 27 | ### Project 28 | 29 | ### Profile Link 30 | 31 | [dickyrex19](https://github.com/dickyrex19) 32 | -------------------------------------------------------------------------------- /profile/fatur.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Fatur 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Sulawesi Barat , Mamuju 9 | 10 | ### Sekolah / Akademik 11 | 12 | -SMP 13 | 14 | ### Hobi 15 | 16 | - Ngocok 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [Fatur](https://github.com/Ftwrr) 30 | -------------------------------------------------------------------------------- /profile/Ridwan.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Ridwan Caesar Rizqi Karisma Biwarni 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Kediri, Jawa Timur 9 | 10 | 11 | ### Sekolah / Akademik 12 | - Politeknik Negeri Malang 13 | 14 | ### Hobi 15 | 16 | - Bermain Game 17 | - Menonton film 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Java 22 | 23 | ### Project 24 | 25 | - 26 | - 27 | - 28 | 29 | ### Profile Link 30 | 31 | [RidwanRizqi](https://github.com/RidwanRizqi) 32 | ``` 33 | -------------------------------------------------------------------------------- /profile/Teddi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Teddi Rahman 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Bali, Tabanan, jln kediri 9 | 10 | ### Sekolah / Akademik 11 | [Pondok Programmer](https://pondokprogrammer.com) 12 | 13 | ### Hobi 14 | 15 | - Cari insprasi 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - HTML 22 | - php 23 | 24 | ### Project 25 | 26 | 27 | ### Profile Link 28 | 29 | [Teddir](https://github.com/Teddir) 30 | -------------------------------------------------------------------------------- /profile/auliarama: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Aulia Ramadhan 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Jakarta 9 | 10 | 11 | ### Sekolah / Akademik 12 | SMK 13 | 14 | ### Hobi 15 | 16 | Renang 17 | - 18 | 19 | ### Bahasa Pemograman 20 | 21 | Javascript 22 | - 23 | - 24 | 25 | ### Project 26 | 27 | - 28 | - 29 | - 30 | 31 | ### Profile Link 32 | 33 | [Nama](https://github.com/ulrmdhn) 34 | ``` 35 | -------------------------------------------------------------------------------- /profile/haikelz.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | **Haikel** 4 | 5 | 6 | 7 | ### Provinsi & Kota 8 | 9 | - Kepulauan Bangka Belitung, Pangkalpinang 10 | 11 | ### Sekolah / Akademik 12 | 13 | ### Hobi 14 | 15 | - Bermain Catur 16 | - Otomotif 17 | 18 | ### Bahasa Pemograman 19 | 20 | - HTML, CSS 21 | - Javascript 22 | - C++ 23 | 24 | ### Project 25 | 26 | ### Profile Link 27 | 28 | [Haikel](https://github.com/haikelz) 29 | -------------------------------------------------------------------------------- /profile/ikhsan.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Ikhsan 4 | 5 | 6 | 7 | ### Jawa Barat & Bogor 8 | 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Futsal 16 | - Badminton 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Design UI UX 21 | - Kotlin 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [Nama](https://github.com/Ikhsaann) 30 | ``` 31 | -------------------------------------------------------------------------------- /profile/Albi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Muhammad Albi 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat, Bekasi 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMAI AL-MUNIR 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | - Nonton 18 | - Ngoding 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Java 23 | - TypeScript/JavaScript 24 | 25 | ### Project 26 | 27 | 28 | ### Profile Link 29 | 30 | [shinz](https://github.com/shinz-404) 31 | -------------------------------------------------------------------------------- /profile/pajri.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Pajri Zahrawaani Ahmad 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat , Cimahi 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMK Negeri 1 Cimahi 13 | 14 | ### Hobi 15 | 16 | - Belum ada hobi :v 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - PHP 22 | - Javascript 23 | - Python 24 | 25 | ### Project 26 | 27 | - 28 | 29 | ### Profile Link 30 | 31 | [Pajri Zahrawaani Ahmad](https://github.com/pforpajri) 32 | -------------------------------------------------------------------------------- /profile/rasyid.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Ar Rasyid Sarifullah 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Jawa Timur, Trenggalek 10 | 11 | ### Sekolah / Akademik 12 | 13 | ### Hobi 14 | 15 | - Belajar 16 | - Mendengarkan Musik 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - Node.js 22 | - HTML 23 | - CSS 24 | 25 | ### Project 26 | 27 | ### Profile Link 28 | 29 | [Rasyid](https://github.com/rasyidzkun) 30 | -------------------------------------------------------------------------------- /profile/yogadep.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Yoga Ade Pangestu 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah , Sukoharjo 9 | 10 | ### Sekolah / Akademik 11 | 12 | ### Hobi 13 | 14 | - Learn code 15 | 16 | 17 | ### Bahasa Pemograman 18 | 19 | - HTML 20 | - PHP 21 | 22 | ### Project 23 | 24 | 25 | 26 | ### Profile Link 27 | 28 | [Nama](https://github.com/yogadep) 29 | -------------------------------------------------------------------------------- /profile/Defri.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Namamu 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Jawa Timur & Ponorogo 8 | 9 | 10 | ### Sekolah / Akademik 11 | - SD 2 Pulung 12 | - SMPN 1 Pulung 13 | 14 | ### Hobi 15 | 16 | - Rebahan 17 | 18 | ### Bahasa Pemograman 19 | 20 | - PHP 21 | - Javascript 22 | 23 | ### Project 24 | 25 | - Brainly-Scraper 26 | 27 | ### Profile Link 28 | 29 | [Defri Indra M](https://github.com/defrindr) 30 | -------------------------------------------------------------------------------- /profile/gavra: -------------------------------------------------------------------------------- 1 | # Nama 2 | Gavra 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Sumatera Utara , Medan 9 | 10 | ### Sekolah / Akademik 11 | UKSW 12 | 13 | ### Hobi 14 | - Tidur 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - HTML 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [Nama](https://github.com/gavrasihombing) 30 | -------------------------------------------------------------------------------- /profile/odorifqi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Muhammad Rifqi 3 | 4 | ### Provisi & Kota 5 | Palembang, Sumatera Selatan 6 | 7 | 8 | ### Sekolah / Akademik 9 | -UNSRI 10 | 11 | ### Hobi 12 | 13 | - Gitar 14 | - Film 15 | 16 | ### Bahasa Pemograman 17 | 18 | - Web Dev 19 | - JS 20 | - java 21 | 22 | ### Project 23 | 24 | - [Landing Page](https://odorifqi.github.io/project-3-freecodecamp/) 25 | - [Commalator](https://odorifqi.github.io/script-hitung/) 26 | 27 | ### Profile Link 28 | 29 | [odorifqi](https://github.com/odorifqi) 30 | -------------------------------------------------------------------------------- /profile/rapli.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | rapli 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kalteng , palangkaraya 9 | 10 | ### Sekolah / Akademik 11 | STIS 12 | 13 | ### Hobi 14 | 15 | - mancing 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - python 21 | - HTML,CSS,JS 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [Nama](https://github.com/linkusers) 30 | -------------------------------------------------------------------------------- /profile/Ikhari.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | andri 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | DKI JAKARTA , JAKARTA SELATAN 9 | 10 | ### Sekolah / Akademik 11 | 12 | Universitas Gunadarma 13 | 14 | ### Hobi 15 | 16 | - Codinng 17 | - Game 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - PHP 23 | - HTML 24 | - PYTHON 25 | - c++ 26 | 27 | ### Project 28 | 29 | 30 | 31 | ### Profile Link 32 | 33 | [Ikhari](https://github.com/Ikhari) 34 | -------------------------------------------------------------------------------- /profile/Yusril.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Muh Yusril 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Sulawesi Selatan, Makassar 10 | 11 | ### Sekolah / Akademik 12 | 13 | ### Hobi 14 | 15 | - Menonton Anime 16 | - Bermain Game 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - Node.js 22 | 23 | ### Project 24 | 25 | ### Profile Link 26 | 27 | [sansekai](https://github.com/sansekai) 28 | -------------------------------------------------------------------------------- /profile/frhn.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Farhan Danu 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Yogyakarta , Sleman 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - Python 22 | - C# 23 | - Swift 24 | 25 | ### Project 26 | 27 | 28 | 29 | ### Profile Link 30 | 31 | [Nama](https://github.com/farhandanu12) 32 | -------------------------------------------------------------------------------- /profile/rayhan.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rayhan 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jakarta , Jakarta Selatan 9 | 10 | ### Sekolah / Akademik 11 | SMK IDN Boarding School 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | - Ngegame 17 | - Bucin 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - JavaScript 23 | - HTML 24 | - Swift 25 | - Kotlin 26 | 27 | ### Project 28 | 29 | - Banyak 30 | 31 | ### Profile Link 32 | 33 | [Nama](https://github.com/Rayhan212) 34 | -------------------------------------------------------------------------------- /profile/FebrianS.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Febrian S. Putra 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Sumut 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMK Negeri 1 13 | 14 | ### Hobi 15 | 16 | - Game 17 | - Nonton 18 | - Ngoding 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Ruby 23 | - Python 24 | 25 | 26 | ### Project 27 | 28 | 29 | ### Profile Link 30 | 31 | [My Profile](https://github.com/FebrianS-putra) -------------------------------------------------------------------------------- /profile/alvinzulham.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Alvin Zulham 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah, Semarang 9 | 10 | ### Sekolah / Akademik 11 | 12 | Teknik Komputer - Universitas Diponegoro 13 | 14 | ### Hobi 15 | 16 | - Ngewibu 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Java 22 | - PHP 23 | - JavaScript 24 | - Dart 25 | 26 | 27 | ### Profile Link 28 | 29 | [Alvin Zulham ](https://github.com/VyscoZyza) 30 | -------------------------------------------------------------------------------- /profile/barbiel.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Barbiel 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat, Depok 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMK 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | - Gabut 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Kotlin 23 | 24 | ### Project 25 | 26 | - masih pemula 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/thaariqnst) 31 | -------------------------------------------------------------------------------- /profile/elbasrie.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Hasan Basri 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Sidoarjo, Jawa Timur 9 | 10 | ### Sekolah / Akademik 11 | 12 | Univ BSI 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Python 22 | - HTML 23 | 24 | ### Project 25 | 26 | - [Toko Kue](https://github.com/elbasrie/tokokue) 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/elbasrie) 31 | -------------------------------------------------------------------------------- /profile/hafid.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Hafid 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jakarta 9 | 10 | ### Sekolah / Akademik 11 | 12 | - 13 | 14 | ### Hobi 15 | 16 | - Coding 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | 23 | 24 | ### Project 25 | 26 | - 27 | 28 | 29 | ### Profile Link 30 | 31 | [hfdzylduck](https://github.com/hfdzylduck) -------------------------------------------------------------------------------- /profile/Dika.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Dika 3 | 4 | 5 | ### Provisi & Kota 6 | 7 | Jatim , surabaya 8 | 9 | ### Sekolah / Akademik 10 | 11 | 12 | ### Hobi 13 | 14 | - Begadang 15 | 16 | 17 | ### Bahasa Pemograman 18 | 19 | - Javascript 20 | - HTML 21 | -C++ 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [Nama](https://github.com/aisyalfawwaz) 30 | -------------------------------------------------------------------------------- /profile/abdulmuttaqin.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Namamu 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Bogor , Indonesia 9 | 10 | ### Sekolah / Akademik 11 | - 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - PHP 22 | - Julia 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/usernamekamu) 31 | -------------------------------------------------------------------------------- /profile/billy.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Billy 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa timur , Malang 9 | 10 | ### Sekolah / Akademik 11 | 12 | - 13 | 14 | ### Hobi 15 | 16 | - nganggur 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - PHP 22 | - CSS 23 | - JAVASCRIPT 24 | - HTML 25 | 26 | ### Project 27 | 28 | https://Jon3sjns.github.com/ 29 | 30 | 31 | ### Profile Link 32 | 33 | [Billy](https://github.com/Jon3sjns/) 34 | -------------------------------------------------------------------------------- /profile/danu.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Farhan Danu 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Yogyakarta , Sleman 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - Python 22 | - C# 23 | - Swift 24 | - C++ 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [Nama](https://github.com/farhandanu12) 33 | -------------------------------------------------------------------------------- /profile/Denny.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Denny P. Y. P. 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Timur , Tuban 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Universitas Dinamika 13 | 14 | ### Hobi 15 | 16 | - Olahraga 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - PHP 23 | - Java 24 | 25 | ### Project 26 | 27 | 28 | 29 | ### Profile Link 30 | 31 | [Dennypyp](https://github.com/Dennypyp) 32 | -------------------------------------------------------------------------------- /profile/Fauzan.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Fauzan Aditia 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Jakarta Timur, DKI Jakarta 10 | 11 | ### Sekolah / Akademik 12 | 13 | ### Hobi 14 | 15 | - Bermain Game 16 | - Menonton Film 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - Python 22 | 23 | ### Project 24 | 25 | ### Profile Link 26 | 27 | [4amparaboy](https://github.com/4amparaboy) 28 | -------------------------------------------------------------------------------- /profile/alief_ramadhan.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Alief Ramadhan 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Jawa Barat , Bekasi 8 | 9 | ### Sekolah / Akademik 10 | SMK Bina Nasional Informatika 11 | 12 | ### Hobi 13 | - Programming 14 | - Bercocok tanam 15 | 16 | ### Bahasa Pemograman 17 | - Python 18 | - Visual Basic 19 | 20 | ### Project 21 | - Limath 22 | - Lichat 23 | - Listore 24 | 25 | ### Profile Link 26 | [Nama](https://github.com/itsmelief) 27 | -------------------------------------------------------------------------------- /profile/fathir.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Fathir 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Tangerang , Tangerang selatan 9 | 10 | ### Sekolah / Akademik 11 | 12 | -SMK 13 | 14 | ### Hobi 15 | 16 | - Tidur 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Kotlin 22 | - C 23 | 24 | ### Project 25 | 26 | Beberapa IoT Project 27 | 28 | 29 | ### Profile Link 30 | 31 | [Nama](https://github.com/Zzfathir) 32 | -------------------------------------------------------------------------------- /profile/ricky.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Ricky 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jakarta Utara , Tebet 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - PHP 22 | - Python 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/ricky) 31 | -------------------------------------------------------------------------------- /profile/roarrraor.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | RoarrraoR 4 | 5 | 6 | 7 | ### Provinsi & Kota 8 | 9 | Jawa Barat, Bandung 10 | 11 | ### Sekolah / Akademik 12 | 13 | 14 | 15 | ### Hobi 16 | 17 | - ghibah 18 | 19 | ### Bahasa Pemograman 20 | 21 | - PHP 22 | - HTML 23 | - CSS 24 | - Python 25 | 26 | ### Project 27 | 28 | 29 | ### Profile Link 30 | 31 | [RoarrraoR](https://github.com/roarrraor) 32 | -------------------------------------------------------------------------------- /TEMPLATE_CODE.MD: -------------------------------------------------------------------------------- 1 | Switch Case Condition 2 | 3 | ```php 4 | 5 | 36 | ``` 37 | -------------------------------------------------------------------------------- /code/Bash/Metasploit-Go/README.md: -------------------------------------------------------------------------------- 1 | # Metasploit-Go 2 | #### Pengen Install Metasploit Framework di Distro Linux non Pentesting tapi kesusahan ? 3 | #### Kenalin Metasploit-Go !, yang mudahin installasi Metasploit Framework Di Desktop dan CLI mu 4 | 5 | ## Cara Install ? 6 | Cukup Jalankan Perintah 7 | 8 | ```sh 9 | bash Installer.sh 10 | ``` 11 | ## Update Package 12 | Update Semua Package metasploit 13 | ```sh 14 | msfupdate 15 | ``` 16 | 17 | _Note: For Pentesting & Educational Purpose Only, Selain dari itu diluar tanggung jawab pemilik repository_ 18 | -------------------------------------------------------------------------------- /profile/DeepyamanDas.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Deepyaman Das 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kalimantan Barat , Pontianak 9 | 10 | ### Sekolah / Akademik 11 | Otodidak 12 | 13 | ### Hobi 14 | 15 | - Reading 16 | - Table Tennis 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - HTML 22 | - Javascript 23 | - PHP 24 | - C 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [deepyaman-das](https://github.com/deepyaman-das) 33 | -------------------------------------------------------------------------------- /profile/Erik.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Erik 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kalimantan Barat , Pontianak 9 | 10 | ### Sekolah / Akademik 11 | SMK Immanuel 12 | 13 | ### Hobi 14 | 15 | - Ngoding 16 | - Game 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - PHP 22 | - Go 23 | - Typescript 24 | - Javascript 25 | - HTML 26 | - CSS 27 | 28 | ### Project 29 | 30 | 31 | 32 | ### Profile Link 33 | 34 | [Erik3010](https://github.com/Erik3010) 35 | -------------------------------------------------------------------------------- /profile/Ludovico.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Ludovico 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah , Surakarta 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Rahasia :)) 13 | 14 | ### Hobi 15 | 16 | - Ngoding 17 | - Tidur 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - HTML 24 | - C++ 25 | - C# 26 | - Python 27 | 28 | ### Project 29 | 30 | 31 | 32 | ### Profile Link 33 | 34 | [Ludovico](https://github.com/LudovicoSforza) 35 | -------------------------------------------------------------------------------- /profile/Tuttzz.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Tuttzz 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah, Pemalang 9 | 10 | ### Sekolah / Akademik 11 | - 12 | 13 | ### Hobi 14 | 15 | -Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | -Html 20 | -Python 21 | 22 | 23 | 24 | ### Project 25 | 26 | - 27 | - 28 | - 29 | 30 | ### Profile Link 31 | 32 | [Nama](https://github.com/Tuttzz) 33 | -------------------------------------------------------------------------------- /profile/gemaekashantiputri.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Gema Eka Shanti Putri 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Purwokerto,Jawa Tengah 9 | 10 | 11 | ### Sekolah / Akademik 12 | - Universitas Muhammadiyah Purwokerto 13 | 14 | ### Hobi 15 | 16 | - ilustrasi 17 | - Design 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Python 22 | - JavaScript 23 | - C# 24 | 25 | ### Project 26 | 27 | - 28 | - 29 | - 30 | 31 | ### Profile Link 32 | 33 | [gemaekashantiputri](https://github.com/gemaekashantiputri) 34 | -------------------------------------------------------------------------------- /code/javascript/vue-components/HacktoberFest.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /code/php/switchCase: -------------------------------------------------------------------------------- 1 | Switch Case Condition 2 | 3 | ```php 4 | 5 | 36 | ``` 37 | -------------------------------------------------------------------------------- /profile/Ikhwan.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Nur Ikhwan 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Jawa Timur, Surabaya 10 | 11 | ### Sekolah / Akademik 12 | 13 | PENS 14 | 15 | ### Hobi 16 | 17 | - Dota 2 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - Html 23 | - Css 24 | - Family of C 25 | 26 | ### Project 27 | 28 | ### Profile Link 29 | 30 | [ikhwan](https://github.com/NurIkhwanAnnafis) 31 | -------------------------------------------------------------------------------- /profile/ceritaq: -------------------------------------------------------------------------------- 1 | # Nama 2 | Namamu 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Jawa Timur & Gresik 8 | 9 | 10 | ### Sekolah / Akademik 11 | -Universitas Airlangga 12 | 13 | ### Hobi 14 | 15 | -Ngaji 16 | -Coding 17 | 18 | ### Bahasa Pemograman 19 | 20 | -Python 21 | -Dart 22 | -Matlab 23 | 24 | ### Project 25 | 26 | -ceritaq Landing Page 27 | - Flutter Aplication 28 | - 29 | 30 | ### Profile Link 31 | 32 | [ceritaq](https://github.com/ceritaq) 33 | -------------------------------------------------------------------------------- /profile/fawwaz.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Fawwaz 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur , Gresik 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Universitas Airlangga 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - HTML 23 | - Python 24 | - Matlab 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [Nama](https://github.com/aisyalfawwaz) 33 | -------------------------------------------------------------------------------- /profile/rizalsimbolon.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rizal Ronelius Simbolon 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Sumatera Utara , Berastagi 9 | 10 | ### Sekolah / Akademik 11 | 12 | Sma 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | - Game 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - HTML 24 | - PHP 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [Rizal Simbolon](https://github.com/lo9ic) 33 | -------------------------------------------------------------------------------- /profile/rizkiramadhanx.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rizki Ramadhan 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kota Tegal, Central Java 9 | 10 | ### Sekolah / Akademik 11 | - Universitas Muhammadiyah Purwokerto 12 | 13 | ### Hobi 14 | 15 | - Mancing 16 | - Makan 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - PHP 22 | 23 | 24 | ### Profile Link 25 | 26 | [Rizki](https://github.com/rizkiramadhanx) 27 | -------------------------------------------------------------------------------- /profile/yogafirdaus.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Yoga Firdaus Pratikha 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur , Kabupaten Jember 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Design 16 | - Animate 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Python 22 | - HTML 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/Yuskakha) 31 | -------------------------------------------------------------------------------- /code/java/java-crypt/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=13 3 | org.eclipse.jdt.core.compiler.compliance=13 4 | org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore 7 | org.eclipse.jdt.core.compiler.processAnnotations=disabled 8 | org.eclipse.jdt.core.compiler.release=disabled 9 | org.eclipse.jdt.core.compiler.source=13 10 | -------------------------------------------------------------------------------- /profile/fihryal.dm: -------------------------------------------------------------------------------- 1 | # Nama 2 | fihryal 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | -bogor , cibinong 9 | 10 | ### Sekolah / Akademik 11 | 12 | -IDN Boarding School 13 | 14 | ### Hobi 15 | 16 | - Push Game 17 | - Bersepedah 18 | 19 | ### Bahasa Pemograman 20 | 21 | - kotlin 22 | - HTML 23 | - C++ 24 | 25 | ### Project 26 | 27 | 28 | 29 | ### Profile Link 30 | 31 | [Nama](https://github.com/fihryal) 32 | -------------------------------------------------------------------------------- /profile/gimenz.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Muhamad Ristiyanto 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Magelang, Jawa Tengah 10 | 11 | ### Sekolah / Akademik 12 | 13 | - 14 | 15 | ### Hobi 16 | 17 | - Nonton YouTube 18 | - Ngoding 19 | - Fotografi 20 | 21 | ### Bahasa Pemograman 22 | 23 | - Node Js 24 | - PHP, CSS, HTML 25 | 26 | ### Project 27 | 28 | - https://masgimenz.my.id 29 | 30 | ### Profile Link 31 | 32 | [Gimenz](https://github.com/Gimenz) 33 | -------------------------------------------------------------------------------- /profile/kevinrp.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Kevin RP 3 | 4 | 5 | ### Provisi & Kota 6 | 7 | Kepulauan Riau , Batam 8 | 9 | ### Sekolah / Akademik 10 | SMA NEGERI 4 BATAM 11 | 12 | ### Hobi 13 | 14 | - Begadang 15 | - Sepak Bola 16 | 17 | ### Bahasa Pemograman 18 | 19 | - Javascript 20 | - Python 21 | - PHP 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [Nama](https://github.com/rivaldo15) 30 | -------------------------------------------------------------------------------- /profile/nandanugraha.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Muhamad Nanda Nugraha 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat , Kuningan 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - HTML 22 | - PHP 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/nanzcakep) 31 | -------------------------------------------------------------------------------- /profile/naufalsyuhur.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Naufal Saidhus Syuhur 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Jawa Barat, Cimahi 8 | 9 | 10 | ### Sekolah / Akademik 11 | -SMKN 1 Cimahi 12 | 13 | ### Hobi 14 | 15 | -Olahraga 16 | -Coding 17 | 18 | ### Bahasa Pemograman 19 | 20 | -PHP 21 | -Python 22 | -C++ 23 | 24 | ### Project 25 | 26 | ### Profile Link 27 | 28 | [Naufal Syuhur](https://github.com/naufal0911) 29 | -------------------------------------------------------------------------------- /profile/puspakirana.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Puspakirana 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Bekasi, Jawa Barat 8 | 9 | 10 | ### Sekolah / Akademik 11 | President University 12 | 13 | ### Hobi 14 | 15 | - sleep 16 | - eat 17 | 18 | ### Bahasa Pemograman 19 | 20 | - PHP 21 | - Java 22 | - VB.NET 23 | 24 | ### Project 25 | 26 | - SSOT 27 | - Shopping Cart 28 | - 29 | 30 | ### Profile Link 31 | 32 | [puspakirana](https://github.com/puspakirana) -------------------------------------------------------------------------------- /profile/Jay.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Jaya 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat, Bandung 9 | 10 | ### Sekolah / Akademik 11 | SMK Negeri Bandung 12 | 13 | ### Hobi 14 | 15 | - Fly fishing 16 | - Letterboxing 17 | - Travelling 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - Typescript 24 | - Dart 25 | - Java 26 | - Swift 27 | 28 | ### Project 29 | 30 | 31 | 32 | ### Profile Link 33 | 34 | [Jay](https://github.com/agungjsp) 35 | -------------------------------------------------------------------------------- /profile/RaflyMaulana.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rafly Maulana 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah , Kota Semarang 9 | 10 | ### Sekolah / Akademik 11 | - SMK N 7 Semarang 12 | 13 | ### Hobi 14 | 15 | - Main Bola 16 | - Main Game 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | 23 | ### Project 24 | 25 | 26 | 27 | ### Profile Link 28 | 29 | [Nama](https://github.com/raflymaulana28) 30 | -------------------------------------------------------------------------------- /profile/fatih.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Fatih 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Jakarta 8 | 9 | 10 | ### Sekolah / Akademik 11 | UIN JAKARTA 12 | 13 | ### Hobi 14 | - Programming 15 | - Solving Problem 16 | 17 | ### Bahasa Pemograman 18 | - Python 19 | - PHP 20 | - Javascript 21 | 22 | ### Project 23 | - E-Commerce 24 | - Online Shop 25 | - Web Portfolio 26 | - Company Landing Page 27 | 28 | ### Profile Link 29 | 30 | [Fatih](https://github.com/ahmadfatihin) 31 | -------------------------------------------------------------------------------- /profile/galihssaputra.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Galih Sukristyan Saputra 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kalimantan Selatan , Banjarbaru 9 | 10 | ### Sekolah / Akademik 11 | SMK Telkom Banjarbaru 12 | 13 | ### Hobi 14 | 15 | - Mgodonf to the bone 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - HTML 22 | - CSS 23 | - PHP 24 | 25 | ### Project 26 | 27 | 28 | 29 | ### Profile Link 30 | 31 | [its Galih](https://github.com/masgalih320) 32 | -------------------------------------------------------------------------------- /profile/prdnaw.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Ichsan Wahyu Pradana 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Cilegon, Banten 8 | 9 | 10 | ### Sekolah / Akademik 11 | - SMKN 1 Cilegon 12 | 13 | ### Hobi 14 | 15 | - Futsal 16 | - Game 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Dart 21 | - Javascript 22 | 23 | 24 | ### Project 25 | 26 | 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [prdnaw](https://github.com/prdnaw) 33 | -------------------------------------------------------------------------------- /profile/rivaldo15.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rivaldo 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Provinsi , Kota 9 | Kepulauan Riau, Batam 10 | 11 | ### Sekolah / Akademik 12 | 13 | 14 | ### Hobi 15 | 16 | - Sepak Bola 17 | - Joging 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - HTML 23 | - Php 24 | 25 | ### Project 26 | 27 | 28 | 29 | ### Profile Link 30 | 31 | [Nama](https://github.com/rivaldo15) 32 | -------------------------------------------------------------------------------- /profile/Ghani.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Fawwaz Abdul Ghani 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat , Bekasi 9 | 10 | ### Sekolah / Akademik 11 | 12 | IDN Boarding School 13 | 14 | ### Hobi 15 | 16 | - Bermain game 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Kotlin 22 | - HTML 23 | - C++ 24 | 25 | ### Project 26 | 27 | 28 | 29 | ### Profile Link 30 | 31 | [Ghani280706](https://github.com/Ghani280706) 32 | -------------------------------------------------------------------------------- /profile/MuamarHilmi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Muamar Hilmi 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat , Kota Bekasi 9 | 10 | ### Sekolah / Akademik 11 | Pondok Programmer 12 | 13 | ### Hobi 14 | 15 | - game 16 | - desain 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - HTML 23 | - css 24 | 25 | ### Project 26 | https://github.com/MuamarHilmi/Point-Of-Sale.git 27 | 28 | 29 | ### Profile Link 30 | 31 | [Nama](https://github.com/MuamarHilmi) 32 | -------------------------------------------------------------------------------- /profile/dzaki.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Namamu 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Timur , Gresik 9 | 10 | ### Sekolah / Akademik 11 | 12 | IDN Boarding School 13 | 14 | ### Hobi 15 | 16 | - Design 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Kotlin 22 | 23 | ### Project 24 | 25 | Android Studio App 26 | 27 | ### Profile Link 28 | 29 | [Nama](https://github.com/alikanz) 30 | -------------------------------------------------------------------------------- /profile/shafhan.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | shafhan farizi 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | DKI Jakarta, Jakarta Barat 9 | 10 | ### Sekolah / Akademik 11 | Otodidak 12 | 13 | ### Hobi 14 | 15 | - Membaca 16 | - Menulis 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - HTML 23 | - PHP 24 | 25 | ### Project 26 | None 27 | 28 | 29 | ### Profile Link 30 | 31 | [shafhan](https://github.com/shafhan) 32 | -------------------------------------------------------------------------------- /profile/afdlol.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Afdlol M 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Jawa Tengah, Wonosobo 9 | 10 | 11 | ### Sekolah / Akademik 12 | - 13 | 14 | ### Hobi 15 | 16 | - Futsal 17 | - Ngegame 18 | 19 | ### Bahasa Pemograman 20 | 21 | - JavaScript 22 | - Dart 23 | - 24 | 25 | ### Project 26 | 27 | - 28 | - 29 | - 30 | 31 | ### Profile Link 32 | 33 | [Afdlol](https://github.com/snorlaxzeroone) 34 | ``` 35 | -------------------------------------------------------------------------------- /profile/arief-samuel.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Arief Samuel 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Dki Jakarta, Jakarta Utara 9 | 10 | 11 | ### Hobi 12 | 13 | - Ngoding 14 | - Music 15 | 16 | ### Bahasa Pemograman 17 | 18 | - C# 19 | - Javascript 20 | - Go 21 | 22 | ### Project 23 | 24 | - [Blog](http://arief21.azurewebsites.net/) 25 | - [Web](lue-stone-014921c00.azurestaticapps.net) 26 | 27 | ### Profile Link 28 | 29 | [arief-samuel](https://github.com/arief-samuel) 30 | -------------------------------------------------------------------------------- /profile/danish.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Danish Olvan 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat , Bogor 9 | 10 | ### Idn Boarding School 11 | 12 | 13 | ### Hobi 14 | 15 | - Main Futsal 16 | - Main Game 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Kotlin 22 | - HTML 23 | 24 | ### Project 25 | Ui Ux Food Project 26 | Iot Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [Nama](https://github.com/D4N1S) 33 | -------------------------------------------------------------------------------- /profile/wildan.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Wildan Hanif 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat , Karawang 9 | 10 | ### Sekolah / Akademik 11 | SMK 12 | 13 | 14 | ### Hobi 15 | 16 | - Bermain Bola 17 | - Mendesign 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Kotlin 23 | - HTML 24 | 25 | ### Project 26 | 27 | - Some ioT Project 28 | 29 | 30 | ### Profile Link 31 | 32 | [Nama](https://github.com/whytupan1010) 33 | -------------------------------------------------------------------------------- /profile/AdiAndoyo.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Adi Andoyo 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kalimantan Barat , Pontianak 9 | 10 | ### Sekolah / Akademik 11 | STMIK Widya Dharma Pontianank 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | - Badminton 17 | - Nonton 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript/Typescript 23 | - Dart 24 | - PHP 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [adiandoyo32](https://github.com/adiandoyo32) 33 | -------------------------------------------------------------------------------- /profile/Devi Apriyanto.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Devi Apriyanto 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kalimantan Barat, Pontianak 9 | 10 | ### Sekolah / Akademik 11 | - Univeritas Tanjungpura 12 | 13 | ### Hobi 14 | 15 | - Olah Raga 16 | - Coding 17 | 18 | ### Bahasa Pemograman 19 | 20 | - HTML 21 | - CSS 22 | - PHP 23 | 24 | ### Project 25 | 26 | - 27 | - 28 | - 29 | 30 | ### Profile Link 31 | 32 | [eep](https://github.com/eepnasibungkos) 33 | -------------------------------------------------------------------------------- /profile/nanda.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | anandadwimirza 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa barat , Bogor 9 | 10 | ### Sekolah / Akademik 11 | Smk 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | - Olahraga 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - HTML 22 | - Kotlin 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [Nama](https://github.com/Anandadwimirza) 31 | -------------------------------------------------------------------------------- /profile/rikkyarisendi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rikky Arisendi 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat , Bandung 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Musik 16 | - Camping 17 | - Game 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Python 23 | - Html 24 | - CSS 25 | - JS 26 | 27 | ### Project 28 | 29 | 30 | ### Profile Link 31 | 32 | [Rikky Arisendi](https://github.com/rikkyarisendi) 33 | -------------------------------------------------------------------------------- /profile/rizkimcitra.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rizki Maulana Citra 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Banten, Pandeglang 9 | 10 | ### Sekolah / Akademik 11 | 12 | AMIK Serang 13 | 14 | ### Hobi 15 | 16 | - Kopi 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - Typescript 22 | 23 | ### Project 24 | 25 | - [Portfolio Website](https://github.com/rizkimcitra/nextjs-portfolio) 26 | 27 | ### Profile Link 28 | 29 | [rizkimcitra](https://github.com/rizkimcitra) 30 | -------------------------------------------------------------------------------- /code/php/Bypass-phpuploader-with-PHP-GD/README.md: -------------------------------------------------------------------------------- 1 | # Bypass PHP-GD RCE 2 | #### Bypassing image uploader use PHP-GD 3 | #### Bypassing Via Injecting RCE Code In Image 4 | 5 | ## Ubah Payload/Kode yang ingin di inject ke gambar 6 | 7 | ``` 8 | $miniPayload = taruh payloadmu disini; 9 | ``` 10 | #### contoh payload yang dipake : 11 | 12 | ``` 13 | $miniPayload = '; 14 | as 15 | vuln.com/rce.jpg.php?0=id;uname -a 16 | ``` 17 | ## How ? 18 | ``` 19 | php gd.php sample.jpg 20 | ``` 21 | #### jika sukses, maka ada file baru bernama payload_sample.jpg 22 | 23 | # JPG ONLY !!! 24 | -------------------------------------------------------------------------------- /profile/Gagassurya19.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Gagas Surya Laksana 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur , Tulungagung 9 | 10 | ### Sekolah / Akademik 11 | SMK Telkom Malang 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | - Ngoding 17 | - Travelling 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - Dart 24 | - PHP 25 | - Python 26 | - Swift 27 | 28 | ### Project 29 | 30 | 31 | 32 | ### Profile Link 33 | 34 | [Gagassurya19](https://github.com/gagassurya19) 35 | -------------------------------------------------------------------------------- /profile/lukman.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Lukman Nul Hakim 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | DKI Jakarta , Jakarta Timur 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMK Negeri 69 Jakarta 13 | 14 | ### Hobi 15 | 16 | - Ngoding 17 | - Main game 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - HTML 23 | - CSS 24 | - PHP 25 | 26 | ### Project 27 | 28 | ### Profile Link 29 | 30 | [Lukman](https://github.com/Lukman350) 31 | -------------------------------------------------------------------------------- /profile/mudzikal.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Mudzik Al Fahri 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Daerah Istimewa Yogyakarta, Kulon Progo 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Universitas Diponegoro 13 | 14 | ### Hobi 15 | 16 | - Tidur 17 | - Makan 18 | - Menulis 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - Java 24 | 25 | ### Project 26 | 27 | - Wefootwear E-commerce (Personal Project) 28 | 29 | ### Profile Link 30 | 31 | [mudzikal](https://github.com/mudzikalfahri) 32 | -------------------------------------------------------------------------------- /profile/neno.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Neno Arisma
3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Majalengka, Jawa Barat 9 | 10 | ### Sekolah / Akademik 11 | 12 | Universitas Kuningan 13 | 14 | ### Hobi 15 | 16 | - Membaca 17 | - Makan 18 | - Ngetik 19 | - Renang 20 | 21 | 22 | ### Bahasa Pemograman 23 | - Php 24 | - Javascript 25 | - Golang 26 | 27 | ### Project 28 | 29 | - Cek Github Saya 30 | 31 | ### Profile Link 32 | 33 | [Neno Arisma](https://github.com/nenofetch) 34 | 35 | -------------------------------------------------------------------------------- /profile/romaaji.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Romadhon Aji 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Timur , Kota Madiun 9 | 10 | ### Sekolah / Akademik 11 | 12 | -SMK 13 | 14 | ### Hobi 15 | 16 | - Coffee 17 | - Music 18 | - Sport 19 | - Code 20 | 21 | 22 | ### Bahasa Pemograman 23 | 24 | - PHP 25 | - HTML CSS JAVASCRIPT 26 | - Python 27 | 28 | ### Project 29 | 30 | Beberapa Tools Untuk Web Developer 31 | 32 | 33 | ### Profile Link 34 | 35 | [Romadhon Aji](https://github.com/romaaji) 36 | -------------------------------------------------------------------------------- /profile/sa.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | SA 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jakarta Selatan , Tabun 9 | 10 | ### Sekolah / Akademik 11 | 12 | Sma 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | - Game 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - C++ 23 | - Phyton 24 | - Java 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [SA](https://github.com/SA888-PM) 33 | -------------------------------------------------------------------------------- /code/python/ShellSort.py: -------------------------------------------------------------------------------- 1 | nums = [50, 34, 78, 44, 8, 90, 21, 1, 30] 2 | 3 | n = len(nums) 4 | gap = int(n//2) 5 | 6 | while gap > 0: 7 | i = 0 8 | j = gap 9 | 10 | while j < n: 11 | if nums[j] < nums[i]: 12 | nums[i],nums[j] = nums[j],nums[i] 13 | i = i + 1 14 | j = j + 1 15 | 16 | t = i 17 | while t - gap > -1: 18 | if nums[t - gap] > nums[t]: 19 | nums[t - gap],nums[t] = nums[t],nums[t - gap] 20 | t = t - 1 21 | gap //= 2 22 | 23 | print(nums) -------------------------------------------------------------------------------- /profile/doniambarita.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Doni Ambarita 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jakarta , Jakarta Timur 9 | 10 | ### Sekolah / Akademik 11 | SMK Negeri 69 Jakarta 12 | 13 | ### Hobi 14 | 15 | - Nonton Bola 16 | - Main Game 17 | - Main Gitar 18 | 19 | ### Bahasa Pemograman 20 | 21 | - PHP 22 | - Javascript 23 | 24 | ### Project 25 | 26 | 27 | 28 | ### Profile Link 29 | 30 | [DoniGanteng](https://github.com/doniambarita) -------------------------------------------------------------------------------- /profile/Candy.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Candy 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Medan , medan 9 | 10 | ### Sekolah / Akademik 11 | 12 | - SMA 1 Sutomo Medan 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | - Main Game 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - HTML 24 | - Python 25 | - CSS 26 | 27 | ### Project 28 | 29 | 30 | 31 | ### Profile Link 32 | 33 | [Nama](https://github.com/aisyalfawwaz) 34 | © 2021 GitHub, Inc. 35 | Terms 36 | Privacy 37 | Security 38 | -------------------------------------------------------------------------------- /profile/antareza.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Antareza Ghifary Alwi musta'in 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Timur , Tulungagung 9 | 10 | ### Sekolah / Akademik 11 | 12 | STMIK AKAKOM Yogyakarta 13 | 14 | ### Hobi 15 | 16 | - Naik Bis 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - CSS 22 | - HTML 23 | - Java 24 | - Kotlin 25 | 26 | ### Project 27 | 28 | - Corona Apps 29 | - News Apps 30 | 31 | 32 | ### Profile Link 33 | 34 | [Antareza Ghifary](https://github.com/antarezaghifary?tab=repositories) 35 | -------------------------------------------------------------------------------- /profile/dimasanugerahp.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | andri 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Jawa Barat , Bekasi 10 | 11 | ### Sekolah / Akademik 12 | 13 | Smkn 4 bekasi 14 | 15 | ### Hobi 16 | 17 | - futsal 18 | - badminton 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - Php 24 | 25 | ### Project 26 | 27 | - HRIS 28 | - Pro Hukum 29 | - Marketplace 30 | - Aplikasi Chat 31 | - Aplikasi Galang Dana 32 | 33 | ### Profile Link 34 | 35 | [DimasAP](https://github.com/Dimas1402) 36 | -------------------------------------------------------------------------------- /profile/syofyanzuhad.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Syofyan Zuhad 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah, Purwokerto 9 | 10 | ### Sekolah / Akademik 11 | [Pondok Programmer](https://pondokprogrammer.com) 12 | 13 | ### Hobi 14 | 15 | - Cari insprasi 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - HTML 22 | - php 23 | 24 | ### Project 25 | 26 | [Syofyan Zuhad](https://syofyanzuhad.my.id) 27 | 28 | 29 | ### Profile Link 30 | 31 | [Syofyan Zuhad](https://github.com/syofyanzuhad) 32 | -------------------------------------------------------------------------------- /code/cpp/fraction.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main() 6 | { 7 | int num = 1; 8 | int den = 1; 9 | int num2 = 0; 10 | int den2 = 0; 11 | int range; 12 | 13 | cout << "Range : "; 14 | cin >> range; 15 | 16 | cout << endl; 17 | 18 | cout << num << "/" << den << " "; 19 | 20 | while (num && den < range) 21 | { 22 | num2 = num + 1; 23 | den2 = (2 * den) + 1; 24 | cout << num2 << "/" << den2 << " "; 25 | num++; 26 | den++; 27 | } 28 | cout << endl; 29 | return 0; 30 | } 31 | -------------------------------------------------------------------------------- /profile/David: -------------------------------------------------------------------------------- 1 | # Nama 2 | David 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur , Banyuwangi 9 | 10 | ### Sekolah / Akademik 11 | Politeknik Negeri Banyuwangi 12 | 13 | ### Hobi 14 | 15 | - Ngoding 16 | - Nonton Anime 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - PHP 23 | - Java 24 | - Dart 25 | 26 | ### Project 27 | - Aplikasi - aplikasi simple (check my repository for more) 28 | 29 | ### Profile Link 30 | 31 | [David Mahbubi](https://github.com/davidmahbubi) 32 | -------------------------------------------------------------------------------- /profile/Feryadialoi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Feryadi 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kalimantan Barat, Pontianak 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | - Ngopi 17 | - Nonton 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Java 22 | - Kotlin 23 | - Golang 24 | - TypeScript/JavaScript 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [feryadialoi](https://github.com/feryadialoi) 33 | -------------------------------------------------------------------------------- /profile/faiznurullah.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Faiz Nurullah
3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Cirebon, Jawa Barat, Indonesia 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMAN 1 Babakan 13 | 14 | ### Hobi 15 | 16 | - Ngoding 17 | - Makan 18 | - Tidur 19 | - Spedaan 20 | 21 | 22 | ### Bahasa Pemograman 23 | 24 | - Dart 25 | - Php 26 | - Javascript 27 | 28 | ### Project 29 | 30 | - Cek Github Saya 31 | 32 | ### Profile Link 33 | 34 | [Faiz Nurullah](https://github.com/Faiznurullah) 35 | -------------------------------------------------------------------------------- /js/services.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Services 3 | * 4 | * Queries the Github API 5 | */ 6 | (function(){ 7 | angular.module('forksServices', ['ngResource']) 8 | 9 | // Add factory Forks 10 | .factory('Forks', ['$resource', function($resource){ 11 | return $resource('https://api.github.com/repos/:user/:repo/forks?page=:page&per_page=:perPage'); 12 | }]) 13 | 14 | // Add factory Repository 15 | .factory('Repository', ['$resource', function($resource){ 16 | return $resource('https://api.github.com/repos/:user/:repo'); 17 | }]); 18 | })(); 19 | -------------------------------------------------------------------------------- /profile/Yodi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Yodi Fakhri 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Bekasi Jawa barat 8 | 9 | 10 | 11 | ### Sekolah / Akademik 12 | - President Univerisity 13 | 14 | ### Hobi 15 | 16 | - sleep 17 | - eat 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Python 22 | - PHP 23 | - Javascript 24 | 25 | ### Project 26 | 27 | - URS 28 | - SSOT 29 | - Plant Watering 30 | 31 | ### Profile Link 32 | 33 | [Yodi Fakhri](https://github.com/yodifm) -------------------------------------------------------------------------------- /profile/dwiky.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Dwiky Aprian Ashari 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur , Banyuwangi 9 | 10 | ### Sekolah / Akademik 11 | Universitas Muhammadiyah Malang 12 | 13 | ### Hobi 14 | 15 | - Bermain Game 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Golang 21 | - Kotlin 22 | - Javascript 23 | 24 | ### Project 25 | 26 | [Thukul Service](https://github.com/aprian1337/thukul-service) 27 | 28 | ### Profile Link 29 | 30 | [Dwiky Aprian Ashari](https://github.com/aprian1337) -------------------------------------------------------------------------------- /profile/ikhsan15.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | ikhsan nur 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat , Depok 9 | 10 | ### Sekolah / Akademik 11 | STT Terpadu Nurul Fikri 12 | 13 | ### Hobi 14 | 15 | - Mencari dan mencoba sesuatu yang baru 16 | - Pengen Trading saham Tesla 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - PHP 22 | - Javascript 23 | - Dart 24 | 25 | ### Project 26 | Sistem Informasi Gema Insani (SIGI) 27 | 28 | 29 | ### Profile Link 30 | 31 | [Nama](https://github.com/ikhsan15) 32 | -------------------------------------------------------------------------------- /code/cpp/Copy_file_remove_whitespaces.cpp: -------------------------------------------------------------------------------- 1 | //Copy the contents of one text file to another file, after removing all whitespaces. 2 | #include 3 | #include 4 | #include 5 | using namespace std; 6 | int main(){ 7 | fstream f1,f2; 8 | f1.open("sample.txt",ios::in); 9 | f2.open("sample1.txt",ios::out); 10 | if(!f1 || !f2) 11 | { 12 | cout<<"Unable to open the files. Exiting."; 13 | exit(0); 14 | } 15 | char ch; 16 | while(!f1.eof()) 17 | { 18 | f1>>ch; 19 | if(ch != ' ') 20 | { 21 | f2< 5 | 6 | ### Provisi & Kota 7 | 8 | Sumatera Utara , Tigapanah 9 | 10 | ### Sekolah / Akademik 11 | 12 | Telkom University 13 | 14 | ### Hobi 15 | 16 | - Catur 17 | - Tidur 18 | - Anime & Film 19 | 20 | 21 | ### Bahasa Pemograman 22 | 23 | - Python 24 | - Pascal 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [Bonifasius Tarigan](https://github.com/bonifasiustrg) 33 | -------------------------------------------------------------------------------- /profile/Christian.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Christian 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kalimantan Barat , Pontianak 9 | 10 | ### Sekolah / Akademik 11 | Apple Developer Academy 🍎 12 | 13 | ### Hobi 14 | 15 | - Olahraga 🏀 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - Typescript 22 | 23 | ### Project 24 | [cinema](https://github.com/veeloo/cinema) ⚡ 25 | 26 | 27 | ### Profile Link 28 | 29 | [veeloo](https://github.com/veeloo) 30 | -------------------------------------------------------------------------------- /profile/MuhammadSafwan.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Muhammad safwan 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | MALAYSIA KUALA TERENGGANU 9 | 10 | 11 | ### Sekolah / Akademik 12 | SMK PA 13 | 14 | ### Hobi 15 | 16 | -Memancing 17 | -Main Bola 18 | 19 | ### Bahasa Pemograman 20 | 21 | -Python 22 | -Php 23 | -Java 24 | 25 | ### Project 26 | 27 | -Creating TeleBot 28 | - 29 | - 30 | 31 | ### Profile Link 32 | 33 | [MuhammadSafwan](https://github.com/limitedperasan) 34 | ``` 35 | -------------------------------------------------------------------------------- /profile/agungd3v.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | andri 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Banten, Tangerang 9 | 10 | ### Sekolah / Akademik 11 | 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - PHP 22 | - PYTHON 23 | - HTML 24 | 25 | ### Project 26 | 27 | https://github.com/agungd3v/mailsender 28 | https://github.com/agungd3v/pytrans 29 | https://github.com/agungd3v/sockmsg 30 | 31 | ### Profile Link 32 | 33 | [Nama](https://github.com/agungd3v) 34 | -------------------------------------------------------------------------------- /profile/bagendeh.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Nanda Wijaya Putra 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat, Bekasi 9 | 10 | ### Sekolah / Akademik 11 | Institute pertanian bogor 12 | 13 | ### Hobi 14 | 15 | - Ngopi 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Python 21 | - Pascal 22 | - C ++ 23 | 24 | 25 | ### Project 26 | 27 | - Loss trading 28 | 29 | ### Profile Link 30 | 31 | [Nanda](https://github.com/bagendeh) 32 | -------------------------------------------------------------------------------- /profile/fariz.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | M Fariz Wisnu Prananda 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Palembang sumatera selatan, Indonesia 9 | 10 | ### Sekolah / Akademik 11 | - Politeknik Negeri Sriwijaya 12 | 13 | ### Hobi 14 | 15 | - Programming 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Golang 21 | - PHP 22 | - Javascript 23 | 24 | ### Project 25 | 26 | [Go-Movie](https://github.com/xvbnm48/go-movie) 27 | 28 | ### Profile Link 29 | 30 | [M Fariz Wisnu Prananda](https://github.com/xvbnm48) 31 | -------------------------------------------------------------------------------- /profile/gathan.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Namamu 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat , Bekasi Barat 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMK IDN Boarding School 13 | 14 | ### Hobi 15 | 16 | - Main Game 17 | - Badminton 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Kotlin 23 | - HTML 24 | 25 | ### Project 26 | 27 | -Macam Macam project IOT 28 | -Aplikasi Android Studio 29 | 30 | 31 | 32 | ### Profile Link 33 | 34 | [Nama](https://github.com/GathanAkhtar) 35 | -------------------------------------------------------------------------------- /profile/irfanyadi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Irfan Yadi 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Lampung Selatan, Lampung 9 | 10 | ### Sekolah / Akademik 11 | 12 | Universitas Lampung 13 | 14 | ### Hobi 15 | 16 | - Nonton 17 | - Main Game 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - PHP 23 | 24 | ### Project 25 | 26 | - [Ngoding](https://irfanyadi.github.io/Ngoding/) 27 | 28 | ### Profile Link 29 | 30 | [irfanyadi](https://github.com/irfanyadi) 31 | -------------------------------------------------------------------------------- /profile/surya.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Surya Efendi 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Barat, Bekasi 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Universitas Darma Persada 13 | 14 | ### Hobi 15 | 16 | - Wibu 17 | - Membaca 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - HTML 24 | - CSS 25 | - Python 26 | - Dart 27 | - Go 28 | 29 | 30 | ### Project 31 | 32 | 33 | 34 | ### Profile Link 35 | 36 | [Luxfield](https://github.com/luxfield) 37 | © 2021 GitHub, Inc. 38 | Terms 39 | Privacy 40 | Security 41 | -------------------------------------------------------------------------------- /profile/Fajar.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Fajar Rian Setyawan 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Jawa Tengah, Karanganyar 9 | 10 | 11 | 12 | ### Sekolah / Akademik 13 | - SMK N 2 Karanganyar 14 | 15 | ### Hobi 16 | 17 | - Learn something new 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - PHP 23 | 24 | ### Project 25 | 26 | - [Pemilihan Ketua OSIS](https://github.com/fajarriansss/CI-Evoting) 27 | 28 | ### Profile Link 29 | 30 | [Fajar Rian Setyawan](https://github.com/fajarriansss) 31 | ``` 32 | -------------------------------------------------------------------------------- /profile/silvi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Silvi 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur , Lamongan 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Universitas Islam Negeri Jakarta 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | - Membaca 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - HTML 24 | - Python 25 | - Matlab 26 | 27 | ### Project 28 | 29 | 30 | 31 | ### Profile Link 32 | 33 | [Nama](https://github.com/aisyalfawwaz) 34 | © 2021 GitHub, Inc. 35 | Terms 36 | Privacy 37 | Security 38 | -------------------------------------------------------------------------------- /profile/usmankhabilah.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Usman Khabilah 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Banten , Tangerang Selatan 9 | 10 | ### Sekolah / Akademik 11 | 12 | Pondok IT 13 | 14 | ### Hobi 15 | 16 | - Game 17 | - Nonton 18 | - Tidur 19 | 20 | 21 | ### Bahasa Pemograman 22 | 23 | - Javascript 24 | - HTML 25 | - CSS 26 | - PHP 27 | 28 | ### Project 29 | 30 | - haitwo.co.id 31 | - nbrscorp.co.id 32 | - reform14.com 33 | 34 | 35 | ### Profile Link 36 | 37 | [Nama](https://github.com/uchiman) 38 | -------------------------------------------------------------------------------- /profile/DimasSaputra.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Dimas Saputra 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur 9 | 10 | ### Sekolah / Akademik 11 | 12 | Mahasiswa 13 | 14 | ### Hobi 15 | 16 | - Baca Novel 17 | - Renang 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - C++ 23 | - Dart 24 | - Javascript 25 | - Python 26 | 27 | ### Project 28 | 29 | - [TWICE_What-Is-Love](https://github.com/Dimas-Saputra-Me/TWICE_What-Is-Love) 30 | 31 | ### Profile Link 32 | 33 | [Dimas-Saputra-ME](https://github.com/Dimas-Saputra-Me) 34 | -------------------------------------------------------------------------------- /profile/Pabodha.md: -------------------------------------------------------------------------------- 1 | # Pabodha 2 | andri 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Sumatera Selatan , Palembang 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMKN 4 PALEMBANG - TEKNIK KOMPUTER JARINGAN 13 | 14 | ### Hobi 15 | 16 | - Gaming 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - Typescript 23 | 24 | ### Project 25 | 26 | - [Ayano](https://github.com/Eilaluth/Ayano) 27 | - [Kyouko](https://github.com/Eilaluth/Kyoko) 28 | 29 | ### Profile Link 30 | 31 | [Eilaluth](https://github.com/Eilaluth) 32 | -------------------------------------------------------------------------------- /profile/Reidho.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | andri 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Sumatera Selatan , Palembang 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMKN 4 PALEMBANG - TEKNIK KOMPUTER JARINGAN 13 | 14 | ### Hobi 15 | 16 | - Gaming 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - Typescript 23 | 24 | ### Project 25 | 26 | - [Ayano](https://github.com/Eilaluth/Ayano) 27 | - [Kyouko](https://github.com/Eilaluth/Kyoko) 28 | 29 | ### Profile Link 30 | 31 | [Eilaluth](https://github.com/Eilaluth) 32 | -------------------------------------------------------------------------------- /profile/vinz15: -------------------------------------------------------------------------------- 1 | # Nama 2 | vinz 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jakarta , Jakarta 9 | 10 | ### Sekolah / Akademik 11 | 12 | - SMA NEGERI 5 JAKARTA 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | - Main Game 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - Python 24 | - Php 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [Nama](https://github.com/vinz15) 33 | © 2021 GitHub, Inc. 34 | Terms 35 | Privacy 36 | Security 37 | -------------------------------------------------------------------------------- /profile/Abay.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Abay (Akbar Kustirama) 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | Indonesia 8 | 9 | ### Bahasa Pemograman 10 | 11 | - PHP 12 | 13 | ### Project 14 | 15 | - [Carina](https://github.com/c0delatte/carina) - Webshell, Virtual Private Server (VPS) and cPanel Database. 16 | - [Labs](https://github.com/abaykan/Labs) - Repositori ini berisi file-file vulnerable terhadap bug tertentu yang saya jadikan demo pada artikel yang saya tulis. 17 | 18 | 19 | ### Profile Link 20 | 21 | [Abay](https://github.com/abaykan) 22 | -------------------------------------------------------------------------------- /profile/asril.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Asril 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Aceh, NAD 10 | 11 | ### Sekolah / Akademik 12 | 13 | 14 | ### Hobi 15 | 16 | - Memancing 17 | - gulat 18 | - tinju 19 | 20 | ### Bahasa Pemrograman 21 | 22 | - c# 23 | - vb.net 24 | - pascal 25 | - dart 26 | - assembly 27 | 28 | ### Project 29 | 30 | ### Profile Link 31 | 32 | [am-523](https://github.com/am-523) 33 | -------------------------------------------------------------------------------- /profile/dwidhanis.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Dhanis Dwi Prasetyo 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Jepara, Jawa Tengah 9 | 10 | 11 | ### Sekolah / Akademik 12 | -Politeknik Negeri Malang 13 | 14 | ### Hobi 15 | 16 | -Bola 17 | -Membaca 18 | 19 | ### Bahasa Pemograman 20 | 21 | -PHP 22 | -Java 23 | -Python 24 | 25 | ### Project 26 | 27 | -Weshop 28 | -Digital warehouse 29 | -itsthink 30 | 31 | ### Profile Link 32 | 33 | [Nama](https://github.com/dwidhanis) 34 | ``` 35 | -------------------------------------------------------------------------------- /code/java/SearchValueMaxMin.java: -------------------------------------------------------------------------------- 1 | public class SearchValueMaxMin { 2 | public static void main(String[] args) { 3 | int arr[] = { 111, 44, 5, 3, 43, 6, 7,1,1 }; 4 | int temp = arr[0]; 5 | int temp1 = arr[0]; 6 | for (int i = 0; i < arr.length; i++) { 7 | if (temp < arr[i]) { 8 | temp = arr[i]; 9 | } 10 | if (temp1 > arr[i]) { 11 | temp1 = arr[i]; 12 | } 13 | } 14 | System.out.println("nilai tertinggi : "+temp); 15 | System.out.println("nilai terendah : "+temp1); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /profile/Kingkin.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Kingkin Fajar Anifianto 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Jawa Tengah, Karanganyar 9 | 10 | 11 | 12 | ### Sekolah / Akademik 13 | - SMK N 2 Karanganyar 14 | 15 | ### Hobi 16 | 17 | - Learn something new 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - PHP 23 | 24 | ### Project 25 | 26 | - [Presensi Karyawan](https://github.com/kingkinfajarr/presensi-karyawan) 27 | 28 | ### Profile Link 29 | 30 | [Kingkin Fajar Anifianto](https://github.com/kingkinfajarr) 31 | ``` 32 | -------------------------------------------------------------------------------- /profile/Rizki.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rizki Deni 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | jogjakarta , bantul 9 | 10 | ### Sekolah / Akademik 11 | pondok it 12 | 13 | ### Hobi 14 | 15 | - Begadang 16 | - Ngoding 17 | - Main game 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - HTML 24 | - pyton 25 | - css 26 | - rust 27 | - java 28 | - dart 29 | 30 | ### Project 31 | 32 | 33 | 34 | ### Profile Link 35 | 36 | [Nama](https://github.com/RizkiDeniPratama) 37 | -------------------------------------------------------------------------------- /profile/faizalanwar.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Faizal Anwar 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat , Kabupaten Cirebon 9 | 10 | ### Sekolah / Akademik 11 | 12 | Stikom Poltek Cirebon 13 | 14 | ### Hobi 15 | 16 | - Ngulik 17 | 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - Php 24 | - React Js 25 | - Laravel 26 | 27 | ### Project 28 | [Latest project with react js](https://github.com/faizalanwar/Finalproject-jcc) 29 | 30 | 31 | ### Profile Link 32 | 33 | [faizalanwar](https://github.com/faizalanwar) 34 | -------------------------------------------------------------------------------- /profile/hasobi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Hasobi Ro'id Radityo 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | DKI Jakarta, Jakarta Selatan 9 | 10 | ### Sekolah / Akademik 11 | 12 | Telkom University 13 | 14 | ### Hobi 15 | 16 | - Membaca 17 | - Ngoding 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Python 22 | - Go 23 | - JavaScript 24 | 25 | 26 | ### Project 27 | 28 | - [DoS Classification](https://github.com/hasobi/dos-classification) 29 | 30 | ### Profile Link 31 | 32 | [hasobi](https://github.com/hasobi) 33 | -------------------------------------------------------------------------------- /profile/irhamms.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Irham Muhammad Shidiq 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Bogor, Jawa Barat 10 | 11 | ### Sekolah / Akademik 12 | 13 | SMK Bina Mandiri Multimedia 14 | 15 | ### Hobi 16 | 17 | - Bermain Game 18 | - Coding 19 | - Desain Web / Mobile 20 | 21 | ### Bahasa Pemograman 22 | 23 | - HTML, CSS, PHP, Javascript / DOM 24 | - Node Js 25 | - Flutter 26 | 27 | ### Project 28 | 29 | - https://irhamshidiq.github.io/ 30 | 31 | ### Profile Link 32 | 33 | [irhamshidiq](https://github.com/irhamshidiq) 34 | -------------------------------------------------------------------------------- /profile/mekel.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Mekel Ilyasa 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Cirebon, Jawa Barat 9 | 10 | ### Sekolah / Akademik 11 | 12 | Undip 13 | 14 | ### Hobi 15 | 16 | - Ngoding 17 | - Movie marathon 18 | - Main gitar/piano 19 | - Main game (genshin impact, csgo, dota) 20 | 21 | ### Bahasa Pemograman 22 | 23 | - Typescript 24 | - Golang 25 | - Python 26 | 27 | ### Project 28 | 29 | Cek github 30 | 31 | ### Profile Link 32 | 33 | [Mekel](https://github.com/retr00exe) 34 | -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- 1 | # This workflow will triage pull requests and apply a label based on the 2 | # paths that are modified in the pull request. 3 | # 4 | # To use this workflow, you will need to set up a .github/labeler.yml 5 | # file with configuration. For more information, see: 6 | # https://github.com/actions/labeler 7 | 8 | name: Labeler 9 | on: [pull_request] 10 | 11 | jobs: 12 | label: 13 | 14 | runs-on: ubuntu-latest 15 | permissions: 16 | contents: read 17 | pull-requests: write 18 | 19 | steps: 20 | - uses: actions/labeler@v2 21 | with: 22 | repo-token: "${{ secrets.GITHUB_TOKEN }}" 23 | -------------------------------------------------------------------------------- /profile/krpauto.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Kevin Rivaldo Panggabean 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kepulauan Riau , Batam 9 | 10 | ### Sekolah / Akademik 11 | 12 | - SMA NEGERI 4 BATAM 13 | 14 | ### Hobi 15 | 16 | - Joging 17 | - Coding 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - Python 24 | - Php 25 | 26 | ### Project 27 | 28 | 29 | 30 | ### Profile Link 31 | 32 | [Nama](https://github.com/krpauto) 33 | © 2021 GitHub, Inc. 34 | Terms 35 | Privacy 36 | Security 37 | -------------------------------------------------------------------------------- /profile/Darussalam.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Darus Salam Alfatah 4 | 5 | 6 | 7 | ### Provinsi & Kota 8 | 9 | Jawa Barat , Sukabumi 10 | 11 | ### Sekolah / Akademik 12 | 13 | Sekolah Tinggi Ilmu Ekonomi PGRI Sukabumi 14 | 15 | ### Hobi 16 | 17 | - Menulis 18 | 19 | - Main Game 20 | 21 | - Main Gitar 22 | 23 | ### Bahasa Pemograman 24 | 25 | - PHP 26 | - HTML 27 | - CSS 28 | 29 | - Javascript 30 | 31 | ### Project 32 | 33 | ### Profile Link 34 | 35 | [Darus Salam Alfatah](https://github.com/darus260) 36 | -------------------------------------------------------------------------------- /profile/adialamsyahardi.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | ACHMAD RIZQI ADI ALAMSYAH 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur, Surabaya 9 | 10 | ### Sekolah / Akademik 11 | 12 | Universitas Muhammadiyah Surabaya 13 | 14 | ### Hobi 15 | 16 | - Pentesting 17 | - Jalan 18 | 19 | 20 | ### Bahasa Pemograman 21 | 22 | - PHP 23 | - HTML 24 | - CSS 25 | 26 | 27 | ### Project 28 | 29 | - alquran.adialamsyahardi.id 30 | - pprohullah.com Website PonPes Modern ROHULLAH 31 | - republicforensic.my.id 32 | 33 | ### Profile Link 34 | 35 | [ADI](https://github.com/adialamsyahardi) 36 | 37 | -------------------------------------------------------------------------------- /profile/isallkun.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Faishal AR 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Pasuruan, Jawa Timur 10 | 11 | ### Sekolah / Akademik 12 | 13 | Teknik Informatika [Universitas Yudharta Pasuruan] 14 | 15 | ### Hobi 16 | 17 | - Streaming Anime 18 | - Airdrop Hunter 19 | - Analisa Cryptocurrency 20 | - Bermain Game 21 | - Coding 22 | 23 | ### Bahasa Pemograman 24 | 25 | - Node Js 26 | - PHP, CSS, HTML 27 | 28 | ### Project 29 | 30 | - https://isallkun.my.id 31 | 32 | ### Profile Link 33 | 34 | [SantriInsyaf](https://github.com/SantriInsyaf) 35 | -------------------------------------------------------------------------------- /profile/RafiNurArdiansyah.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rafi Nur Ardiansyah 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah, Semarang 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMK Negeri 7 Semarang 13 | 14 | ### Hobi 15 | 16 | - Musik 17 | - Game 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Python 22 | 23 | ### Project 24 | 25 | - 26 | - 27 | - 28 | 29 | ### Profile Link 30 | 31 | [Rafi Nur Arsiansyah](https://github.com/RafiNurArdiansyah) 32 | -------------------------------------------------------------------------------- /profile/fatik.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Fatik 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur , Sidoarjo 9 | 10 | ### Sekolah / Akademik 11 | 12 | Univesitas Negeri Surabaya 13 | 14 | ### Hobi 15 | 16 | - Begadang 17 | - Game (MOLE) 18 | - Ngopi 19 | 20 | 21 | ### Bahasa Pemograman 22 | 23 | - Javascript 24 | - PHP 25 | - CSS 26 | - HTML 27 | 28 | ### Project 29 | 30 | - Membuat marketplace sederhana dengan laravel 31 | - Membuat penjualan tiket pesawat online dengan react native 32 | 33 | 34 | ### Profile Link 35 | 36 | [Fatik](https://github.com/fatik07/) 37 | -------------------------------------------------------------------------------- /profile/AthallahDzaki.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Athallah Dzaki 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Timur , Malang 9 | 10 | ### Sekolah / Akademik 11 | 12 | SMAN 9 Malang 13 | 14 | ### Hobi 15 | 16 | - Ngoding, Ngoding, Ngoding 17 | 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - HTML 23 | - Pawn 24 | - Python 25 | - C++ 26 | - Lua 27 | 28 | ### Project 29 | 30 | [SAMPMobile](https://github.com/AthallahDzaki/SAMPMobile) 31 | [SAMPINDO](https://sampindo.my.id) 32 | 33 | ### Profile Link 34 | 35 | [AthallahDzaki](https://github.com/AthallahDzaki) 36 | -------------------------------------------------------------------------------- /profile/ayatullah.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Ayatullah Naufal 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Majalengka, Jawa Barat 9 | 10 | ### Sekolah / Akademik 11 | Telkom Univ 12 | 13 | ### Hobi 14 | 15 | - Futsal 16 | - Badminton 17 | - Coding 18 | - Design 19 | - Reading 20 | 21 | 22 | ### Bahasa Pemograman 23 | 24 | - Javascript 25 | - HTML 26 | - PHP 27 | - React 28 | - Flutter 29 | - Java 30 | 31 | ### Project 32 | https://ayatullahnaufal.github.io/Ayatullahnfl/#about 33 | 34 | 35 | ### Profile Link 36 | 37 | [Ayatullah Naufal](https://github.com/ayatullahnaufal) 38 | -------------------------------------------------------------------------------- /code/python/rafi_python/Rafi_ooppython.py: -------------------------------------------------------------------------------- 1 | class Cat: 2 | species='mamal' 3 | def __init__(self, name, age): 4 | self.name=name 5 | self.age=age 6 | 7 | def __repr__(self): 8 | return f"Nama {self.name} Umur {self.age} bulan" 9 | 10 | #instaciate (menambahkan 3 objek cat) 11 | cat1=Cat('Moka', 9) 12 | cat2=Cat('Macha', 7) 13 | cat3=Cat('Michelle', 11) 14 | 15 | umur=[cat1, cat2, cat3] 16 | umur.sort(key=lambda x: x.age, reverse=True) 17 | 18 | print('Urutan kucing dari kucing tertua') 19 | for i in umur: 20 | print('>>', i) 21 | 22 | oldest= max(cat1.age, cat2.age, cat3.age) 23 | 24 | print('Kucing tertua adalah', oldest,'bulan') -------------------------------------------------------------------------------- /code/java/Reverse.java: -------------------------------------------------------------------------------- 1 | package com.company; 2 | 3 | import javax.swing.text.AttributeSet; 4 | import java.util.Scanner; 5 | 6 | public class Reverse { 7 | public static void main(String[] args) { 8 | Scanner in = new Scanner(System.in); 9 | System.out.println("Enter Word: "); 10 | String word = in.next(); 11 | int len = word.length(); 12 | String rev = ""; 13 | 14 | for(int i = 1; i <= len; i++){ 15 | char l = word.charAt(len-i); 16 | rev = rev.concat(Character.toString(l)); 17 | } 18 | System.out.println("The reverse of the string is " + rev); 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /profile/muhamad_imam_taufik_febriyana.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Muhamad Imam Taufik Febriyana 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat, Bandung 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Smk Bina Sara Cendekia Bandung 13 | 14 | ### Hobi 15 | 16 | - Main Game 17 | - Ngoding 18 | - Tidur 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Kotlin 23 | - Java 24 | - Dart 25 | 26 | ### Project 27 | 28 | - Kredit Plus Mobile 29 | - Internal Agent Apps for Kredit Plus 30 | 31 | ### Profile Link 32 | 33 | [mitf](https://github.com/mitf) 34 | -------------------------------------------------------------------------------- /code/any/htaccess_equivalent_laravel_in_openlitespeed_config: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Redirect Trailing Slashes If Not A Folder... 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | RewriteRule ^(.*)/$ /$1 [L,R=301] 11 | 12 | # Handle Front Controller... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_FILENAME} !-f 15 | RewriteRule ^ index.php [L] 16 | 17 | # Handle Authorization Header 18 | # RewriteCond %{HTTP:Authorization} . 19 | # RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 20 | 21 | -------------------------------------------------------------------------------- /code/go/01_helloWorld.go: -------------------------------------------------------------------------------- 1 | package main 2 | /* 3 | Deklarasi package main merupakan penanda untuk go compiler 4 | agar package di-compile sebagai executable program dan bukan sebagai library. 5 | */ 6 | 7 | import "fmt" 8 | /* 9 | package fmt atau format package merupakan package dari go untuk memodifikasi output berupa string, int, 10 | atau format lainnya. 11 | */ 12 | /* 13 | Untuk memanggil package lebih dari satu, misal fmt dan strings, kita bisa menulis dengan 14 | 15 | import ( 16 | "fmt" 17 | "strings" 18 | ) 19 | */ 20 | 21 | func main() { 22 | fmt.Println("Hello World!") 23 | /* 24 | baris kode di atas merupakan baris dasar untuk menampilkan Hello World! ke konsol. 25 | */ 26 | } -------------------------------------------------------------------------------- /code/php/PHP-CRUD/action/update.php: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /code/php/Autologin-FreeBiznet/login.php: -------------------------------------------------------------------------------- 1 | \K.*?(?=)' ", $waktu); 12 | echo "\033[0;92mLimit Telah Direset ! \033[0m"; 13 | print_r("\033[0;92m $waktu[0]\033[0m"); 14 | echo "\033[01;31m Jika Gagal Coba Login Manual ! \033[0m"; 15 | } 16 | -------------------------------------------------------------------------------- /profile/hasinilmalik.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Hasinilmalik 3 | Namamu 4 | 5 | 6 | 7 | 8 | ### Provisi & Kota 9 | Jawa timur - Jember 10 | 11 | 12 | 13 | ### Sekolah / Akademik 14 | SMP Darul Ulum 15 | - 16 | 17 | ### Hobi 18 | - Main game 19 | 20 | - 21 | - 22 | 23 | ### Bahasa Pemograman 24 | - PHP, HTML, CSS 25 | - REACT 26 | 27 | - 28 | - 29 | - 30 | 31 | ### Project 32 | - DBAPPS 33 | - PPDB 34 | 35 | - 36 | - 37 | - 38 | 39 | ### Profile Link 40 | 41 | [Hasinilmalik](https://github.com/hasinilmalik) 42 | [Nama](https://github.com/usernamekamu) 43 | -------------------------------------------------------------------------------- /profile/reymunda.md: -------------------------------------------------------------------------------- 1 | ``` 2 | # Nama 3 | Reymunda 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | Bandung,Jawa Barat 9 | 10 | 11 | ### Sekolah / Akademik 12 | - Universitas Komputer Indonesia 13 | 14 | ### Hobi 15 | 16 | - Design 17 | - Ngoding 18 | 19 | ### Bahasa Pemograman 20 | 21 | - Javascript 22 | - Pascal 23 | - C++ 24 | 25 | ### Project 26 | 27 | - [Covinfo: Covid Data & Statistics Website](https://covinfoweb.netlify.app/) 28 | - [Destinesia](https://github.com/reymunda/destinesia-web-design) 29 | 30 | ### Profile Link 31 | 32 | [reymunda](https://github.com/reymunda) 33 | ``` 34 | -------------------------------------------------------------------------------- /code/java/ReverseArray.java: -------------------------------------------------------------------------------- 1 | package com.art; 2 | 3 | import java.util.Arrays; 4 | import java.util.Scanner; 5 | 6 | public class ReverseArray { 7 | public static void main(String[] args) { 8 | int n; 9 | Scanner sc = new Scanner(System.in); 10 | System.out.print("Enter the length of the array: "); 11 | n = sc.nextInt(); 12 | 13 | int[] a = new int[n]; 14 | for(int i = 0; i < n; i++) 15 | { 16 | a[i] = sc.nextInt(); 17 | } 18 | 19 | int[] b = new int[n]; 20 | for(int i = 0; i < n; i++) 21 | { 22 | b[i] = a[n-i-1]; 23 | } 24 | System.out.println(Arrays.toString(b)); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /profile/SeptiyanNugroho.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Septiyan Nugroho 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Yogyakarta,Sleman 10 | 11 | ### Sekolah / Akademik 12 | 13 | ### Hobi 14 | 15 | - Bermain Game 16 | - Menonton Film 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - Python 22 | - Flutter 23 | 24 | ### Project 25 | 26 | ### Profile Link 27 | 28 | [SeptiyanNugroho](https://github.com/SeptiyanNugroho) 29 | -------------------------------------------------------------------------------- /profile/yaza.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Aly Zakki Yaza 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat , Kota 9 | 10 | ### Sekolah / Akademik 11 | 12 | IDN Boarding School 13 | 14 | ### Hobi 15 | 16 | - Berenang 17 | - Badminton 18 | - Design 19 | 20 | 21 | ### Bahasa Pemograman 22 | 23 | - Kotlin 24 | - HTML 25 | 26 | ### Project 27 | 28 | Aplikasi Bitaqwa 29 | 30 | ### Profile Link 31 | 32 | [Nama](https://github.com/statusyaza) 33 | -------------------------------------------------------------------------------- /.github/workflows/merge.yml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | name: automerge 5 | on: 6 | pull_request: 7 | types: 8 | - labeled 9 | - unlabeled 10 | - synchronize 11 | - opened 12 | - edited 13 | - ready_for_review 14 | - reopened 15 | - unlocked 16 | pull_request_review: 17 | types: 18 | - submitted 19 | check_suite: 20 | types: 21 | - completed 22 | status: {} 23 | jobs: 24 | automerge: 25 | runs-on: ubuntu-latest 26 | steps: 27 | - name: automerge 28 | uses: "pascalgn/automerge-action@v0.14.3" 29 | env: 30 | GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" 31 | MERGE_LABELS: "hacktoberfest-accepted" 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /code/cpp/subset_sum_problem.cpp: -------------------------------------------------------------------------------- 1 | int subset(vector &A, int B,int n,vector>&dp){ 2 | if(B==0){ 3 | return 1; 4 | } 5 | if(n==0){ 6 | return 0; 7 | } 8 | if(dp[n][B]!=-1){ 9 | return dp[n][B]; 10 | } 11 | if(A[n-1]<=B){ 12 | dp[n][B]=subset(A,B-A[n-1],n-1,dp)||subset(A,B,n-1,dp); 13 | } 14 | else{ 15 | dp[n][B]=subset(A,B,n-1,dp); 16 | } 17 | return dp[n][B]; 18 | } 19 | int Solution::solve(vector &A, int B) { 20 | int n=A.size(),i,j; 21 | vector>dp(n+1); 22 | for(i=0;i>dp(1003); 2 | int knapsack(vector &A, vector &B, int w, int n,vector>&dp){ 3 | if(n==0||w==0){ 4 | return 0; 5 | } 6 | if(dp[n][w]!=-1){ 7 | return dp[n][w]; 8 | } 9 | if(B[n-1]<=w){ 10 | dp[n][w]=max(A[n-1]+knapsack(A,B,w-B[n-1],n-1,dp),knapsack(A,B,w,n-1),dp); 11 | } 12 | else{ 13 | dp[n][w]=knapsack(A,B,w,n-1,dp); 14 | } 15 | return dp[n][w]; 16 | } 17 | int Solution::solve(vector &A, vector &B, int C) { 18 | int i,j; 19 | for(i=0;i<1003;i++){ 20 | for(j=0;j<1003;j++){ 21 | dp[i].push_back(-1); 22 | } 23 | } 24 | return knapsack(A,B,C,A.size(), dp); 25 | } 26 | -------------------------------------------------------------------------------- /profile/arip.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Arif Rahmat Santoso 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Timur, Malang 9 | 10 | ### Sekolah / Akademik 11 | Universitas 12 | 13 | 14 | ### Hobi 15 | 16 | - Mendengarkan Musik 17 | - Bermain Game 18 | - Editing / Mendesign 19 | 20 | 21 | ### Bahasa Pemograman 22 | 23 | - PHP 24 | - Python 25 | - C# 26 | 27 | ### Project 28 | 29 | - Website Showroom Motor 30 | - Website Marketplace Handphone (Framework Laravel) 31 | - Website Framework menggunakan ReactJS 32 | - Dll 33 | 34 | ### Profile Link 35 | 36 | [Nama](https://github.com/arip1997) 37 | -------------------------------------------------------------------------------- /code/cpp/factorialtrailingzeroes.cpp: -------------------------------------------------------------------------------- 1 | // C++ program to count 2 | // trailing 0s in n! 3 | #include 4 | using namespace std; 5 | 6 | // Function to return trailing 7 | // 0s in factorial of n 8 | int findTrailingZeros(int n) 9 | { 10 | if (n < 0) // Negative Number Edge Case 11 | return -1; 12 | 13 | // Initialize result 14 | int count = 0; 15 | 16 | // Keep dividing n by powers of 17 | // 5 and update count 18 | for (int i = 5; n / i >= 1; i *= 5) 19 | count += n / i; 20 | 21 | return count; 22 | } 23 | 24 | // Driver Code 25 | int main() 26 | { 27 | int n = 100; 28 | cout << "Count of trailing 0s in " << 100 << "! is " 29 | << findTrailingZeros(n); 30 | return 0; 31 | } 32 | -------------------------------------------------------------------------------- /profile/samodra.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Samodra 3 | 4 |
5 | 6 | 7 | ### Provinsi & Kota 8 | 9 | Ponorogo, Jawa Timur 10 | 11 | ### Sekolah / Akademik 12 | 13 | Politeknik Astra 14 | 15 | ### Hobi 16 | 17 | - Ngoding 18 | - Dengerin Musik 19 | - Olahraga 20 | 21 | 22 | ### Bahasa Pemograman 23 | 24 | - Javascript 25 | - HTML 26 | - CSS 27 | - PHP 28 | - Python 29 | - JAva 30 | 31 | ### Project 32 | 33 | * [BUSS](https://github.com/saamodra/BUSS) 34 | * [Adagawe](https://github.com/saamodra/adagawe) 35 | * [Doize]( 36 | * [Adagawe](https://github.com/saamodra/adagawe)) 37 | 38 | 39 | 40 | ### Profile Link 41 | 42 | [Samodra](https://github.com/saamodra) 43 | -------------------------------------------------------------------------------- /code/javascript/face-detector-js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Face Detection 8 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /profile/jul.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Muhammad Zul Marij Rizqi Fathullah 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Kalimanta Timur , Bontang 9 | 10 | ### Sekolah / Akademik 11 | Pondok Programmer 12 | 13 | ### Hobi 14 | 15 | - Mencari Hal Baru 16 | 17 | 18 | ### Bahasa Pemograman 19 | 20 | - Javascript 21 | - HTML 22 | - PHP 23 | - SQL 24 | 25 | ### Project 26 | Point Of Sales 27 | 28 | 29 | ### Profile Link 30 | 31 | [Muhammad Zul Marij Rizqi Fathullah](https://github.com/zulmarij) 32 | -------------------------------------------------------------------------------- /code/javascript/javascript-snippet/simple_kalkulator.md: -------------------------------------------------------------------------------- 1 | Simple Kalkulator Dengan Javascript 2 | 3 | ```Javascript 4 | const operator = prompt('Tambah/Kali/Kurang/Bagi: '); 5 | const number1 = parseFloat(prompt('Masukan Angka Pertama: ')); 6 | const number2 = parseFloat(prompt('Masukan Angka Kedua: ')); 7 | 8 | let result; 9 | if (operator == '+') { 10 | result = number1 + number2; 11 | } 12 | else if (operator == '-') { 13 | result = number1 - number2; 14 | } 15 | else if (operator == '*' || 'x' || 'X') { 16 | result = number1 * number2; 17 | } 18 | else if (operator == '/' || ':'){ 19 | result = number1 / number2; 20 | } 21 | else { 22 | console.log('Something Error'); 23 | } 24 | console.log(`${number1} ${operator} ${number2} = ${result}`); 25 | 26 | ``` 27 | -------------------------------------------------------------------------------- /code/python/caesar_cipher.py: -------------------------------------------------------------------------------- 1 | # A python program to illustrate Caesar Cipher Technique 2 | def encrypt(text, s): 3 | result = "" 4 | 5 | # traverse text 6 | for i in range(len(text)): 7 | char = text[i] 8 | 9 | # Encrypt uppercase characters 10 | if (char.isupper()): 11 | result += chr((ord(char) + s - 65) % 26 + 65) 12 | 13 | # Encrypt lowercase characters 14 | else: 15 | result += chr((ord(char) + s - 97) % 26 + 97) 16 | 17 | return result 18 | 19 | # Modify this s variable to change shifted secret message 20 | s = 4 21 | text = input("Input secret words : ") 22 | 23 | print("Text : " + text) 24 | print("Shift : " + str(s)) 25 | print("Cipher: " + encrypt(text, s)) 26 | -------------------------------------------------------------------------------- /code/java/ShellSort.java: -------------------------------------------------------------------------------- 1 | package com.company; 2 | 3 | import java.util.Arrays; 4 | 5 | public class ShellSort { 6 | public static void main(String[] args) { 7 | 8 | int[] nums = {50, 34, 78, 44, 8, 90, 21, 1, 30}; 9 | int n = nums.length; 10 | int temp; 11 | int j; 12 | 13 | for (int gap = n/2; gap >= 1; gap /= 2) { 14 | 15 | for (int i = gap; i < n; i++) { 16 | 17 | temp = nums[i]; 18 | 19 | for (j = i; j >= gap && nums[j-gap] > temp; j -= gap) { 20 | 21 | nums[j] = nums[j - gap]; 22 | } 23 | nums[j] = temp; 24 | } 25 | } 26 | 27 | System.out.println(Arrays.toString(nums)); 28 | 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /profile/adityamputra.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Aditya Muhamad Putra P. 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Jawa Barat, Cianjur 9 | 10 | ### Sekolah / Akademik 11 | 12 | Saat ini, mahasiswa baru Universitas Putra Indonesia 13 | 14 | ### Hobi 15 | 16 | - Mendengarkan Musik 17 | - Ngoding 18 | - Badminton 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - CSS 24 | - PHP 25 | - Typescript 26 | - C# 27 | 28 | ### Project 29 | 30 | - [POS System](https://cl-pos.asika.id/) 31 | - [Aplikasi SDM Tania Perfume](https://sdmtaniaperfume.co.id/) 32 | - [CV Website](https://adityamputra27.netlify.app/) 33 | 34 | ### Profile Link 35 | 36 | [adityamputra27](https://github.com/adityamputra27) 37 | -------------------------------------------------------------------------------- /code/php/PHP-CRUD/readme.md: -------------------------------------------------------------------------------- 1 | # PHP-CRUD 2 | 3 | Sistem Crud PHP Native dibuat dengan : 4 | 5 | - PHP 5.2.0 6 | - Mysql Database 7 | - HTML 8 | 9 | ## DOKUMENTASI 10 | 11 | ### install 12 | 13 | Clone repositori 14 | 15 | ``` 16 | git clone https://github.com/rizkytegar/PHP-CRUD 17 | ``` 18 | 19 | ### database 20 | 21 | Import database 22 | 23 | ``` 24 | config/database.sql 25 | ``` 26 | 27 | Lokasi konfigurasi database ada di : 28 | 29 | ``` 30 | config/database.php 31 | ``` 32 | 33 | Sesuaikan nama database dengan database anda 34 | 35 | ``` 36 | $databaseHost = 'localhost'; 37 | $databaseName = 'php-crud'; 38 | $databaseUsername = 'root'; 39 | $databasePassword = ''; 40 | ``` 41 | 42 | ## AUTHOR 43 | 44 | - Name : Rizky Tegar Pratama 45 | 46 | - Github : Https://www.github.com/rizkytegar 47 | -------------------------------------------------------------------------------- /code/python/face_recognition-python/Read.md: -------------------------------------------------------------------------------- 1 | =================================================================== 2 | =================================================================== 3 | =================================================================== 4 | 5 | ==== How to install module and what modules must be installed ===== 6 | 7 | =================================================================== 8 | =================================================================== 9 | =================================================================== 10 | 11 | 1.Install Open CV 12 | =>pip install opencv-python 13 | or 14 | =>pip install opencv-contrib-python 15 | 16 | 2.Install Numpy 17 | => pip install numpy 18 | 19 | thanks for read, if you want to ask something, contact me on email. 20 | 21 | pramdpb@gmail.com -------------------------------------------------------------------------------- /code/php/PHP-CRUD/action/readme.md: -------------------------------------------------------------------------------- 1 | # PHP-CRUD 2 | 3 | Sistem Crud PHP Native dibuat dengan : 4 | 5 | - PHP 5.2.0 6 | - Mysql Database 7 | - HTML 8 | 9 | ## DOKUMENTASI 10 | 11 | ### install 12 | 13 | Clone repositori 14 | 15 | ``` 16 | git clone https://github.com/rizkytegar/PHP-CRUD 17 | ``` 18 | 19 | ### database 20 | 21 | Import database 22 | 23 | ``` 24 | config/database.sql 25 | ``` 26 | 27 | Lokasi konfigurasi database ada di : 28 | 29 | ``` 30 | config/database.php 31 | ``` 32 | 33 | Sesuaikan nama database dengan database anda 34 | 35 | ``` 36 | $databaseHost = 'localhost'; 37 | $databaseName = 'php-crud'; 38 | $databaseUsername = 'root'; 39 | $databasePassword = ''; 40 | ``` 41 | 42 | ## AUTHOR 43 | 44 | - Name : Rizky Tegar Pratama 45 | 46 | - Github : Https://www.github.com/rizkytegar 47 | -------------------------------------------------------------------------------- /code/php/PHP-CRUD/config/readme.md: -------------------------------------------------------------------------------- 1 | # PHP-CRUD 2 | 3 | Sistem Crud PHP Native dibuat dengan : 4 | 5 | - PHP 5.2.0 6 | - Mysql Database 7 | - HTML 8 | 9 | ## DOKUMENTASI 10 | 11 | ### install 12 | 13 | Clone repositori 14 | 15 | ``` 16 | git clone https://github.com/rizkytegar/PHP-CRUD 17 | ``` 18 | 19 | ### database 20 | 21 | Import database 22 | 23 | ``` 24 | config/database.sql 25 | ``` 26 | 27 | Lokasi konfigurasi database ada di : 28 | 29 | ``` 30 | config/database.php 31 | ``` 32 | 33 | Sesuaikan nama database dengan database anda 34 | 35 | ``` 36 | $databaseHost = 'localhost'; 37 | $databaseName = 'php-crud'; 38 | $databaseUsername = 'root'; 39 | $databasePassword = ''; 40 | ``` 41 | 42 | ## AUTHOR 43 | 44 | - Name : Rizky Tegar Pratama 45 | 46 | - Github : Https://www.github.com/rizkytegar 47 | -------------------------------------------------------------------------------- /profile/vaibhav.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Vaibhav Sharma 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Dehradun, Uttarakhand, India 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Graphic Era Hill University, Dehradun, India 13 | 14 | ### Hobi 15 | 16 | - membaca(Misteri, kengerian) 17 | - pemrograman 18 | - mendengarkan musik 19 | 20 | 21 | ### Bahasa Pemograman 22 | 23 | - C 24 | - C++ 25 | - Python 26 | - Java 27 | - HTML 28 | - CSS 29 | - Git 30 | - Github 31 | - VS Code 32 | 33 | ### Profile Link 34 | 35 | [Vaibhav Sharma](https://github.com/AlphaVS-76) 36 | -------------------------------------------------------------------------------- /profile/rizkytegar.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Rizky Tegar Pratama 3 | 4 | 5 | 6 | ### Provinsi & Kota 7 | 8 | Pemalang, Jawa Tengah 9 | 10 | ### Sekolah / Akademik 11 | 12 | [Lulus] dari jurusan rekayasa perangkat lunak SMK PGRI 2 TAMAN, Pemalang 13 | 14 | ### Hobi 15 | 16 | - Menulis 17 | - Ngoding 18 | - Baca Novel 19 | 20 | ### Bahasa Pemograman 21 | 22 | - Javascript 23 | - PHP 24 | - Ruby 25 | - Java 26 | 27 | 28 | ### Project 29 | 30 | - [Company profile](https://ciptagrahasoftware.com) 31 | - [Website Profile Komunitas](https://gemarkode.or.id) 32 | - [My Personal Website](https://rizkytegar.com) 33 | 34 | ### Profile Link 35 | 36 | [rizkytegar](https://github.com/rizkytegar) 37 | -------------------------------------------------------------------------------- /code/java/lockerPuzzle.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | import java.util.*; 4 | 5 | public class lockerPuzzle{ 6 | public static void main(String[] args){ 7 | boolean[] lockers = new boolean[101]; 8 | 9 | //Initially opening all the lockers which are multiples of 1 before moving onto 2 10 | for (int i= 1; i < lockers.length; i++) 11 | lockers[i] = true; 12 | 13 | //Closing the locker if it is open, and opening the locker if it is closed 14 | for (int i = 2; i <= 100; i++){ 15 | for (int j = 1; i * j <= 100; j++){ 16 | if(lockers[i * j] == true) 17 | lockers[i * j] = false; 18 | else 19 | lockers[i * j] = true; 20 | } 21 | } 22 | //Displaying the open Lockers 23 | for (int i = 0; i < lockers.length; i++){ 24 | if (lockers[i] == true) 25 | System.out.println("Locker " + i + " is open"); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /code/php/PHP-CRUD/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Learn PHP With Rizky Dev 8 | 9 | 10 |
11 |

Learn PHP

12 |
13 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /code/cpp/randomgenerator.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | using namespace std; 6 | 7 | int main() 8 | { 9 | int choose; 10 | int random; 11 | 12 | do 13 | { 14 | srand(time(NULL)); 15 | cout << "--------------------------------" << endl; 16 | cout << "| RANDOM GENERATOR |" << endl; 17 | cout << "--------------------------------" << endl; 18 | cout << "| [1]/[0] >> "; 19 | cin >> choose; 20 | 21 | cout << endl; 22 | 23 | if (choose == 1) 24 | { 25 | random = rand() % 100 + 1; //Random number from 1 to 100 26 | cout << "RANDOM NUMBER : " << random << endl; 27 | } 28 | 29 | } while (choose != 0); 30 | 31 | cout << "Thanks for using program" << endl; 32 | 33 | return 0; 34 | } 35 | -------------------------------------------------------------------------------- /code/php/PHP-CRUD/action/insert.php: -------------------------------------------------------------------------------- 1 | 31 | -------------------------------------------------------------------------------- /profile/Restu.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Restu Wahyu Saputra 4 | 5 | 6 | 7 | ### Provinsi & Kota 8 | 9 | Depok, Jawa Barat 10 | 11 | ### Sekolah / Akademik 12 | 13 | Universitas Indraprasta PGRI 14 | 15 | ### Hobi 16 | 17 | - Coding 18 | - Badmindton 19 | - Gaming 20 | - Musik 21 | 22 | ### Bahasa Pemograman 23 | 24 | - JavaScript 25 | - TypeScript 26 | - Go 27 | 28 | ### Project 29 | 30 | - [Bangjago Emulator](https://github.com/restuwahyu13/bangjago-android-emulator) 31 | - [Node Disk Storage](https://github.com/restuwahyu13/node-disk-storage) 32 | - [Kraken Node](https://github.com/restuwahyu13/kraken-node) 33 | - [Kraken Browser](https://github.com/restuwahyu13/kraken-browser) 34 | 35 | ### Profile Link 36 | 37 | - [Github](https://github.com/restuwahyu13) 38 | - [Linkedin](https://www.linkedin.com/in/restuwahyu13) 39 | -------------------------------------------------------------------------------- /profile/irvanhakim.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | 3 | Muh Yusril 4 | 5 | 6 | 7 | ### Provisi & Kota 8 | 9 | Yogyakarta, Bantul 10 | 11 | ### Sekolah / Akademik 12 | 13 | SMK Negeri 1 Pajangan 14 | 15 | ### Hobi 16 | 17 | - Anime 18 | - Coding 19 | - Fantasy Writing 20 | 21 | ### Bahasa Pemograman 22 | 23 | - Javascript 24 | - Node.js 25 | - React.js 26 | 27 | - PHP 28 | - Laravel 29 | 30 | ### Project 31 | 32 | - Javascript 33 | - [Halodoc API](https://github.com/bakunya/halodoc-api) 34 | - [Alodokter API](https://github.com/bakunya/alodokter-api) 35 | - [Map Track Covid 19](https://github.com/bakunya/map_track_covid-19) 36 | - [Soccer News](https://github.com/bakunya/Soccer_News) 37 | 38 | - PHP 39 | -[Laundry](https://github.com/bakunya/laundry) 40 | -[Web Perpus](https://github.com/bakunya/web-perpus) 41 | 42 | ### Profile Link 43 | 44 | [Bakunya](https://github.com/bakunya) -------------------------------------------------------------------------------- /code/Arduino/SwitchCaseSerialArduino.ino: -------------------------------------------------------------------------------- 1 | #define red 5 2 | #define green 6 3 | #define blue 7 4 | 5 | void setup() { 6 | // put your setup code here, to run once: 7 | pinMode(red, OUTPUT); 8 | pinMode(green, OUTPUT); 9 | pinMode(blue, OUTPUT); 10 | Serial.begin(9600); 11 | Serial2.begin(9600); 12 | } 13 | 14 | void loop() { 15 | // put your main code here, to run repeatedly: 16 | 17 | while (Serial2.available()) { 18 | 19 | char val = Serial2.read(); 20 | Serial.println(val); 21 | 22 | switch (val) { 23 | case 'r': 24 | digitalWrite(red, HIGH); 25 | break; 26 | case 'g': 27 | digitalWrite(green, HIGH); 28 | break; 29 | case 'b': 30 | digitalWrite(blue, HIGH); 31 | break; 32 | default: 33 | digitalWrite(red, LOW); 34 | digitalWrite(green, LOW); 35 | digitalWrite(blue, LOW); 36 | break; 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /code/java/java-crypt/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | com.code 5 | crypt 6 | 1.0-SNAPSHOT 7 | jar 8 | 9 | 10 | com.google.guava 11 | guava 12 | 29.0-jre 13 | 14 | 15 | 16 | UTF-8 17 | 13 18 | 13 19 | 20 | -------------------------------------------------------------------------------- /profile/st4rz.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Bintang Nur Pradana 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah , Cilacap 9 | 10 | ### Sekolah / Akademik 11 | 12 | - Universitas Amikom Purwokerto / Teknik Informatika 13 | 14 | ### Hobi 15 | 16 | - Menulis Kode 17 | - Bermain Game 18 | - Visual Effect 19 | 20 | 21 | ### Bahasa Pemograman 22 | 23 | - Javascript 24 | - HTML 25 | - Python 26 | - CSS 27 | - PHP 28 | - C++ 29 | - Golamg 30 | 31 | ### Project 32 | 33 | [Rest Api Xteam](https://api.xteam.xyz) 34 | 35 | [Bot Whatsapp](https://github.com/Bintang73/botst4rz) 36 | 37 | [Inject Paket Kuota](https://github.com/Bintang73/tembaktembakan) 38 | 39 | 40 | ### Profile Link 41 | 42 | [Bintang Nur Pradana](https://github.com/bintang73) 43 | © 2021 GitHub, Inc. 44 | Terms 45 | Privacy 46 | Security 47 | © 2021 GitHub, Inc. 48 | Terms 49 | -------------------------------------------------------------------------------- /code/java/java-crypt/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | crypt 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.m2e.core.maven2Builder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.jdt.core.javanature 21 | org.eclipse.m2e.core.maven2Nature 22 | 23 | 24 | 25 | 1634199376291 26 | 27 | 30 28 | 29 | org.eclipse.core.resources.regexFilterMatcher 30 | node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /code/java/BubbleSort.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | 3 | class Main { 4 | public static void main (String[] args) { 5 | Scanner sc = new Scanner(System.in); 6 | int t = sc.nextInt(); 7 | for(int i = 0; i < t; i++) 8 | { 9 | int size = sc.nextInt(); 10 | int[] a = new int[size]; 11 | for(int j = 0; j < size; j++) 12 | { 13 | a[j] = sc.nextInt(); 14 | } 15 | for (int j =0; j < size; j++) 16 | { 17 | for(int k = 0; k < size-j-1; k++) 18 | { 19 | if(a[k] > a[k+1]) 20 | { 21 | int temp = a[k]; 22 | a[k] = a[k+1]; 23 | a[k+1] = temp; 24 | } 25 | } 26 | } 27 | for(int j = 0; j < size; j++) 28 | { 29 | System.out.print(a[j]+" "); 30 | } 31 | System.out.println(); 32 | 33 | } 34 | sc.close(); 35 | } 36 | } -------------------------------------------------------------------------------- /code/cpp/SequentialSearchChar/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main() 6 | { 7 | cout << "======== PROGRAM SEQUENTIAL SEARCH CHAR ========\n" << endl; 8 | 9 | char bil_cari, Data[100]; 10 | int i,n, ketemu; 11 | 12 | cout << "Inputan Jumlah Data dalam Array: "; cin >> n; 13 | cout << endl; 14 | 15 | for(int c=0; cmax) 18 | max = arr[i]; 19 | } 20 | int[] count = new int[max + 1]; 21 | for(int i=0;i=0;i--) 29 | { 30 | output[count[arr[i]]-1]=arr[i]; 31 | count[arr[i]]--; 32 | } 33 | for(int i=0;i ')) 7 | break 8 | except ValueError: 9 | print('Mohon masukan angka!') 10 | continue 11 | while True: 12 | try: 13 | secnum=float(input('masukan angka kedua -> ')) 14 | break 15 | except ValueError: 16 | print('Mohon masukan angka!') 17 | continue 18 | plus=firstnum+secnum 19 | minus=firstnum-secnum 20 | multipl=firstnum*secnum 21 | devide=firstnum/secnum 22 | residu=firstnum%secnum 23 | power=firstnum**secnum 24 | print('Hasil dari ', firstnum, '+', secnum, 'adalah ', plus) 25 | print('Hasil dari ', firstnum, '-', secnum, 'adalah ', minus) 26 | print('Hasil dari ', firstnum, 'x', secnum, 'adalah ', multipl) 27 | print('Hasil dari ', firstnum, '÷', secnum, 'adalah ', devide) 28 | print('Hasil dari ', firstnum, '%', secnum, 'adalah ', residu) 29 | print('Hasil dari ', firstnum, '^', secnum, 'adalah ', power) -------------------------------------------------------------------------------- /code/java/maxValue.java: -------------------------------------------------------------------------------- 1 | import java.util.*; 2 | 3 | public class maxValue{ 4 | public static void main(String[] args){ 5 | 6 | //creating Scanner object to read input from the user 7 | Scanner input = new Scanner(System.in); 8 | 9 | //assigning first number to variable 'max' 10 | System.out.print("Enter numbers: "); 11 | int max = input.nextInt(); 12 | int count = 1; 13 | 14 | //declaring a temporary variable for next numbers 15 | int temp; 16 | do{ 17 | //storing the next numbers in temp 18 | temp = input.nextInt(); 19 | 20 | //incrementing the count if the entered number is equal to max number 21 | if(temp == max) 22 | count++; 23 | 24 | //checking if the entered number is greater than max number 25 | if(temp > max){ 26 | max = temp; 27 | count = 1; 28 | } 29 | }while(temp != 0); 30 | 31 | if(max == 0) 32 | System.out.print("Please enter numbers other than zero"); 33 | else{ 34 | System.out.println("The largest number is "+max); 35 | System.out.println("The occurrence count of the largest number is "+count); 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /code/java/Armstrongnum.java: -------------------------------------------------------------------------------- 1 | package com.company; 2 | 3 | import java.util.Scanner; 4 | import java.lang.Math; 5 | 6 | public class Armstrongnum { 7 | public static void main(String[] args) { 8 | Scanner in = new Scanner(System.in); 9 | System.out.println("Enter number: "); 10 | int num = in.nextInt(); 11 | int temp = num; 12 | int r = 0; 13 | int sum = 0; 14 | int n = num; 15 | int len = 0; 16 | 17 | 18 | // To Calculate the length of the given number. 19 | while (n > 0){ 20 | r = n % 10; 21 | n /= 10; 22 | len++; 23 | } 24 | 25 | // To Calculate the Armstrong Number. 26 | while (num > 0){ 27 | r = num % 10; 28 | sum = sum + (int)(Math.pow(r, len)); 29 | num /= 10; 30 | } 31 | 32 | if(sum == temp){ 33 | System.out.println("It is an Armstrong Number."); 34 | } 35 | else{ 36 | System.out.println("Not an Armstrong Number."); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /code/cpp/partition_equal_subset_sum.cpp: -------------------------------------------------------------------------------- 1 | class Solution { 2 | public: 3 | bool partition(vector&nums,int sum,int n,vector>&dp){ 4 | if(sum==0){ 5 | return true; 6 | } 7 | if(n==0){ 8 | return false; 9 | } 10 | if(dp[n][sum]!=-1){ 11 | return dp[n][sum]; 12 | } 13 | if(nums[n-1]<=sum){ 14 | dp[n][sum]=partition(nums,sum-nums[n-1],n-1,dp)||partition(nums,sum,n-1,dp); 15 | } 16 | else{ 17 | dp[n][sum]=partition(nums,sum,n-1,dp); 18 | } 19 | return dp[n][sum]; 20 | } 21 | bool canPartition(vector& nums) { 22 | int sum=0,i,j,n=nums.size(); 23 | for(i=0;i>dp(n+1); 31 | for(i=0;i<=n;i++){ 32 | for(j=0;j<=sum;j++){ 33 | dp[i].push_back(-1); 34 | } 35 | } 36 | return partition(nums,sum,n,dp); 37 | } 38 | }; 39 | -------------------------------------------------------------------------------- /code/python/input_number.py: -------------------------------------------------------------------------------- 1 | import statistics 2 | import numpy as np 3 | 4 | # fungsi untuk mengurutkan bilangan 5 | def sort(num): 6 | num.sort() 7 | print("Urutkan angka: ", end = "") 8 | for i in num: 9 | if i < len(num): 10 | print(i, end=", ") 11 | else: 12 | print(i) 13 | 14 | # fungsi untuk menghitung rata-rata 15 | def average(num): 16 | result = sum(num) / len(num) 17 | print("Rata-rata: ", round(result, 2)) 18 | 19 | # fungsi untuk menghitung median 20 | def median(num): 21 | print("Median: ", statistics.median(num)) 22 | 23 | # fungsi untuk menghitung prekalian semua bilangan 24 | def multiply(num): 25 | result = np.prod(num) 26 | print("Hasil kali semua bilangan: ", result) 27 | 28 | num = [] 29 | i = 0; 30 | 31 | print("============= PROGRAM INPUT BILANGAN ===============") 32 | amount_num = int(input("Berapa banyak bilangan yang ingin dihitung?: ")) 33 | 34 | while i < amount_num : 35 | num_input = int(input("Bilangan ke - %d: " %(i+1))) 36 | num.append(num_input) 37 | i += 1 38 | 39 | print("====================================================") 40 | sort(num) 41 | average(num) 42 | median(num) 43 | multiply(num) 44 | -------------------------------------------------------------------------------- /code/php/PHP-CRUD/new.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | New User 7 | 8 | 9 |
10 |

New User

11 |
12 |
13 |
14 | 15 | 16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | 24 |
25 |
26 | 27 | 28 |
29 | 30 |
31 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /code/python/count_program.py: -------------------------------------------------------------------------------- 1 | import statistics 2 | import numpy as np 3 | 4 | # fungsi untuk mengurutkan bilangan 5 | def sort(num): 6 | num.sort() 7 | print("Urutkan angka: ", end = "") 8 | for i in num: 9 | if i < len(num): 10 | print(i, end=", ") 11 | else: 12 | print(i) 13 | 14 | # fungsi untuk menghitung rata-rata 15 | def average(num): 16 | result = sum(num) / len(num) 17 | print("Rata-rata: ", round(result, 2)) 18 | 19 | # fungsi untuk menghitung median 20 | def median(num): 21 | print("Median: ", statistics.median(num)) 22 | 23 | # fungsi untuk menghitung prekalian semua bilangan 24 | def multiply(num): 25 | result = np.prod(num) 26 | print("Hasil kali semua bilangan: ", result) 27 | 28 | num = [] 29 | i = 0; 30 | 31 | print("============= PROGRAM INPUT BILANGAN ===============") 32 | amount_num = int(input("Berapa banyak bilangan yang ingin dihitung?: ")) 33 | 34 | while i < amount_num : 35 | num_input = int(input("Bilangan ke - %d: " %(i+1))) 36 | num.append(num_input) 37 | i += 1 38 | 39 | print("====================================================") 40 | sort(num) 41 | average(num) 42 | median(num) 43 | multiply(num) 44 | -------------------------------------------------------------------------------- /code/cpp/caesarCipher.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | 4 | int main(){ 5 | string input; 6 | cout << "Input string : "; 7 | cin >> input; 8 | 9 | int key; 10 | cout << "Input key : "; 11 | cin >> key; 12 | 13 | for(int i=0; i= 97 and ascii <= 122){ 18 | ascii = ascii+key; 19 | if(ascii > 122){ 20 | ascii = (ascii % 122) + 96; 21 | } 22 | 23 | char output = ascii; // convert ascii to char 24 | cout << output; 25 | 26 | 27 | //check if the char is in uppercase 28 | } else if(ascii >= 65 and ascii <= 90){ 29 | ascii = ascii+key; 30 | if(ascii > 90){ 31 | ascii = (ascii % 90) + 64; 32 | } 33 | 34 | char output = ascii; // convert ascii to char 35 | cout << output; 36 | 37 | 38 | // if the char is not alphabet, do nothing 39 | } else { 40 | cout << input[i]; 41 | } 42 | } 43 | 44 | // List char to ascii number 45 | // a 97 --- z 122 46 | // A 65 --- Z 90 47 | 48 | /* 49 | Credit : 50 | Coded by Dimas Saputra (https://github.com/Dimas-Saputra-Me) 51 | */ 52 | } 53 | -------------------------------------------------------------------------------- /code/java/FutureInvestmentValue.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | import java.util.*; 4 | 5 | class FutureInvestmentValue{ 6 | public static void main(String[] args){ 7 | Scanner input = new Scanner(System.in); 8 | 9 | //Promtping the user for investment amount and saving it in 'invAmount' 10 | System.out.print("Enter investment amount: "); 11 | double invAmount = input.nextDouble(); 12 | 13 | //Promtping the user for annual interest rate and saving it in 'annIntRate' 14 | System.out.print("Enter annual interest rate: "); 15 | double annIntRate = input.nextDouble(); 16 | 17 | //Calculating monthly interest rate and saving it in 'monIntRate' 18 | double monIntRate = annIntRate/12; 19 | 20 | //Promtping the user for number of years and saving it in 'years' 21 | System.out.print("Enter number of years: "); 22 | int years = input.nextInt(); 23 | 24 | //Calculating the Future Investment Value using the power function in Math class 25 | //and displaying only first two digits after decimal by truncating the rest 26 | //using the format function in String class 27 | double futInvVal = invAmount * Math.pow((1 + monIntRate/100), years*12); 28 | System.out.print("Accumulated value is "+ String.format("%.2f", futInvVal)); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /profile/elfinsanjaya: -------------------------------------------------------------------------------- 1 | 👋 Hello... My full name is Elfin Sanjaya, so you can call me "Elfin". I'm Software Engineer who specialized in *frontend* side, but also have an ability to code in *backend* side. Very passionate about modern *mobile and web technology* using JavaScript/TypeScript while taking into consideration the latest trends and techniques. 2 | 3 | ## 💼 Career 4 | Currently working in *Software Engineering Division* as a ***Software Engineer*** at [dalenta]. 5 | 6 | ## 💻 Experiences 7 | - Pure JavaScript/TypeScript 8 | - GIT (VCS) 9 | - JavaScript Ecosystem & Environment (*Real-time, Asynchronous/Concurrent Processing*) 10 | - React Web/Native (*Hooks, Context API, Redux*) 11 | - NextJS 12 | - Express JS 13 | - PHP 14 | - Laravel 15 | - Docker, Netlify, Vercel, Firebase, Mongo Cloud/mLab, Heroku, Mysql, PostgreSQL 16 | 17 | ### 🔍 Currently Learning: 18 | - Design Pattern 19 | - Writing 20 | - Context Creator 21 | - Self Improvement 22 | 23 | ### 🚀 How to reach me: 24 | - Web: [elfin sanjaya](https://elfinsanjaya12.github.io) 25 | - Email: [elfinsanjaya12@gmail.com](elfinsanjaya12@gmail.com) 26 | - LinkedIn: [elfinsanjaya](https://www.linkedin.com/in/elfin-sanjaya-15a266176/) 27 | - Instagram: [@elfinsanjaya](https://www.instagram.com/elfinsanjaya12/) 28 | 29 | --- 30 | -------------------------------------------------------------------------------- /code/php/PHP-CRUD/list.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | List Users 9 | 10 | 11 |
12 |

List User

13 |
14 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | "; 34 | echo ""; 35 | echo ""; 36 | echo ""; 37 | echo ""; 38 | echo ""; 39 | echo ""; 43 | echo""; 44 | } 45 | ?> 46 | 47 |
ID_UserNameEmailAddressMessageAction
".$row['id_user']."".$row['name']."".$row['email']."".$row['address']."".$row['message'].""; 40 | echo "Edit | "; 41 | echo "Delete"; 42 | echo "
48 | 49 | 50 | -------------------------------------------------------------------------------- /code/javascript/popcat.js: -------------------------------------------------------------------------------- 1 | let token = await document.getElementById("app").__vue__.$recaptcha("pop") 2 | let delta = 3e4; 3 | let okSend = 0 4 | 5 | let send = () => fetch(`https://stats.popcat.click/pop?pop_count=800&captcha_token=${token}`) 6 | .then((response) => response.json()) 7 | .then((json) => { 8 | token = json.Token; 9 | delta > 3e4 && (delta -= 1e3); 10 | frontEnd() 11 | loop(); 12 | let cookie = `; ${document.cookie}`.split("; pop_count=") 13 | document.cookie = `pop_count=${(cookie.length > 1 && (parseInt(cookie[1]) + 800)) || 0}`; 14 | console.clear(); 15 | console.log(`%cadd 800 click; sends: ${++okSend}`, "color:yellow;background-color:sienna"); 16 | }) 17 | .catch((err) => { 18 | delta += 1e3; 19 | loop(); 20 | console.clear(); 21 | console.log("%c429:%c add time", "color:red", "color:black"); 22 | }); 23 | let loop = () => setTimeout(send, delta); 24 | send(); 25 | function frontEnd() { 26 | for (let i = 0; i <= 800; i++) { 27 | setTimeout(() => { 28 | let txt = document.getElementsByClassName("counter")[0] 29 | let now = parseInt(txt.innerText.replace(/,/g, "")) || 0 30 | txt.innerText = (++now).toLocaleString("en-us") 31 | }, i * (delta / 800)); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /code/Html_CSS/simpleclock-build-html-css-js/script.js: -------------------------------------------------------------------------------- 1 | const clock = document.getElementById('clock'); 2 | const seconds = document.getElementById('seconds'); 3 | const minutes = document.getElementById('minutes'); 4 | const hours = document.getElementById('hours'); 5 | const ticks = document.getElementById('ticks'); 6 | 7 | 8 | 9 | 10 | 11 | 12 | function makeTicks(){ 13 | for (let i=0; i<60; i++){ 14 | const tick = document.createElementNS('http://www.w3.org/2000/svg', 'line'); 15 | tick.setAttribute('y1', i%5 ? 33 : 30); 16 | tick.setAttribute('y2', i%5 ? 36 : 36); 17 | tick.setAttribute('stroke-width', i%5 ? 1 : 2); 18 | tick.setAttribute('stroke','black'); 19 | tick.setAttribute('transform', `rotate(${i*360/60})`); 20 | ticks.appendChild(tick); 21 | } 22 | } 23 | 24 | function animate(){ 25 | requestAnimationFrame(animate); 26 | const date = new Date(); 27 | const s = date.getMilliseconds()/1000 + date.getSeconds(); 28 | const m = date.getMinutes() + date.getSeconds()/60 + date.getMilliseconds()/1000/60; 29 | const h = date.getHours() + date.getMinutes()/60 + date.getMilliseconds()/1000/60/60; 30 | 31 | seconds.setAttribute('transform', `rotate(${360 * s/60})`); 32 | minutes.setAttribute('transform', `rotate(${360 * m/60})`); 33 | hours.setAttribute('transform', `rotate(${360 * h/12})`); 34 | } 35 | 36 | makeTicks(); 37 | animate(); -------------------------------------------------------------------------------- /code/Bash/jekyll-auto-tools.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #rizkytegar npm auto tools 3 | clear 4 | echo " Welcome To Jekyll Auto Tools" 5 | echo "________________________________________________________" 6 | echo "" 7 | echo " AUTHOR" 8 | echo "" 9 | echo "Name : Rizky Tegar" 10 | echo "Github : https://www.github.com/rizkytegar" 11 | echo "________________________________________________________" 12 | echo "" 13 | echo "Menu" 14 | echo "" 15 | echo "1. Gem Install Bundler" 16 | echo "2. Bundle Install" 17 | echo "3. Info" 18 | echo "4. Jekyll Serve" 19 | echo "5. Jekyll Build" 20 | echo "" 21 | echo -n "Enter Request : " 22 | read VAR 23 | 24 | # state 25 | if [[ $VAR -eq 1 ]] 26 | then 27 | echo "Gem Install Bundler...." 28 | gem install bundler 29 | 30 | # state 31 | elif [[ $VAR -eq 2 ]] 32 | then 33 | echo "bundle install...." 34 | bundle install 35 | 36 | # state 37 | elif [[ $VAR -eq 3 ]] 38 | then 39 | echo "waiting info...." 40 | bundle --version 41 | jekyll --version 42 | echo "gem : " 43 | gem --version 44 | 45 | # state 46 | elif [[ $VAR -eq 4 ]] 47 | then 48 | echo "Jekyll Serve...." 49 | bundle exec jekyll serve 50 | 51 | # state 52 | elif [[ $VAR -eq 5 ]] 53 | then 54 | echo "Building the Your site..." 55 | bundle exec jekyll build 56 | 57 | # state 58 | else 59 | echo "Command Not Found" 60 | fi 61 | -------------------------------------------------------------------------------- /code/java/KadanesAlgo.java: -------------------------------------------------------------------------------- 1 | class KadanesAlgo 2 | { 3 | // Function to find the maximum sum of a contiguous subarray 4 | // in a given integer array 5 | public static int kadane(int[] A) 6 | { 7 | // stores the maximum sum subarray found so far 8 | int maxSoFar = 0; 9 | 10 | // stores the maximum sum of subarray ending at the current position 11 | int maxEndingHere = 0; 12 | 13 | // traverse the given array 14 | for (int i: A) 15 | { 16 | // update the maximum sum of subarray "ending" at index `i` (by adding the 17 | // current element to maximum sum ending at previous index `i-1`) 18 | maxEndingHere = maxEndingHere + i; 19 | 20 | // if the maximum sum is negative, set it to 0 (which represents 21 | // an empty subarray) 22 | maxEndingHere = Integer.max(maxEndingHere, 0); 23 | 24 | // update the result if the current subarray sum is found to be greater 25 | maxSoFar = Integer.max(maxSoFar, maxEndingHere); 26 | } 27 | 28 | return maxSoFar; 29 | } 30 | 31 | public static void main(String[] args) 32 | { 33 | int[] A = { -2, 1, -3, 4, -1, 2, 1, -5, 4 }; 34 | 35 | System.out.println("The sum of contiguous subarray with the " + 36 | "largest sum is " + kadane(A)); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /code/java/Sieve_of_Eratosthenes.java: -------------------------------------------------------------------------------- 1 | class SieveOfEratosthenes 2 | { 3 | void sieveOfEratosthenes(int n) 4 | { 5 | // Create a boolean array "prime[0..n]" and initialize 6 | // all entries it as true. A value in prime[i] will 7 | // finally be false if i is Not a prime, else true. 8 | boolean prime[] = new boolean[n+1]; 9 | for(int i=0;i= l) { 8 | int mid = l + (r - l) / 2; 9 | 10 | // If the element is present at the 11 | // middle itself 12 | if (arr[mid] == x) 13 | return mid; 14 | 15 | // If element is smaller than mid, then 16 | // it can only be present in left subarray 17 | if (arr[mid] > x) 18 | return binarySearch(arr, l, mid - 1, x); 19 | 20 | // Else the element can only be present 21 | // in right subarray 22 | return binarySearch(arr, mid + 1, r, x); 23 | } 24 | 25 | // We reach here when element is not present 26 | // in array 27 | return -1; 28 | } 29 | 30 | 31 | public static void main(String args[]) 32 | { 33 | BinarySearch ob = new BinarySearch(); 34 | int arr[] = { 2, 3, 4, 10, 40 }; 35 | int n = arr.length; 36 | int x = 10; 37 | int result = ob.binarySearch(arr, 0, n - 1, x); 38 | if (result == -1) 39 | System.out.println("Element not present"); 40 | else 41 | System.out.println("Element found at index " + result); 42 | } 43 | } 44 | 45 | -------------------------------------------------------------------------------- /profile/Noval.md: -------------------------------------------------------------------------------- 1 | # Nama 2 | Noval Sungkar 3 | 4 | 5 | 6 | ### Provisi & Kota 7 | 8 | Jawa Tengah , Tegal 9 | 10 | ### Sekolah / Akademik 11 | 12 | - UDINUS / Teknik Informatika 13 | 14 | ### Hobi 15 | 16 | - Riding 17 | - Main Game 18 | - Berenang 19 | 20 | 21 | ### Bahasa Pemograman 22 | 23 | - Javascript 24 | - HTML 25 | - Python 26 | - CSS 27 | - PHP 28 | - C++ 29 | - Java 30 | 31 | ### Project 32 | 33 | 34 | 35 | ### Profile Link 36 | 37 | [Noval Sungkar](https://github.com/novalsungkar) 38 | © 2021 GitHub, Inc. 39 | Terms 40 | Privacy 41 | Security 42 | © 2021 GitHub, Inc. 43 | Terms 44 | -------------------------------------------------------------------------------- /code/java/QuickSort.java: -------------------------------------------------------------------------------- 1 | import java.io.*; 2 | 3 | class QuickSort{ 4 | 5 | 6 | static void swap(int[] arr, int i, int j) { // to swap two elements 7 | 8 | int temp = arr[i]; 9 | arr[i] = arr[j]; 10 | arr[j] = temp; 11 | } 12 | 13 | 14 | static int partition(int[] arr, int low, int high){ 15 | 16 | int pivot = arr[high]; 17 | 18 | int i = (low - 1); 19 | 20 | for(int j = low; j <= high - 1; j++){ 21 | 22 | if (arr[j] < pivot) { // If current element is smaller than the pivot 23 | 24 | 25 | i++; 26 | swap(arr, i, j); 27 | } 28 | } 29 | swap(arr, i + 1, high); 30 | return (i + 1); 31 | } 32 | 33 | static void quickSort(int[] arr, int low, int high){ 34 | if (low < high){ 35 | 36 | int pi = partition(arr, low, high); // arr[p] is now at right place 37 | 38 | quickSort(arr, low, pi - 1); // sort elements before partition 39 | quickSort(arr, pi + 1, high); // sort elements after partition 40 | } 41 | } 42 | 43 | static void printArray(int[] arr, int size){ 44 | 45 | 46 | for(int i = 0; i < size; i++) 47 | System.out.print(arr[i] + " "); 48 | 49 | System.out.println(); 50 | } 51 | 52 | public static void main(String[] args){ 53 | 54 | int[] arr = { 45, 56, 37, 79, 46, 18, 90, 81, 51}; 55 | int n = arr.length; 56 | 57 | quickSort(arr, 0, n - 1); 58 | System.out.println("\n\n Sorted array : " ); 59 | printArray(arr, n); 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /code/java/Backtracking/swap.java: -------------------------------------------------------------------------------- 1 | // Java program to find maximum 2 | // integer possible by doing 3 | // at-most K swap operations on 4 | // its digits. 5 | 6 | import java.io.*; 7 | class Res { 8 | static String max = ""; 9 | } 10 | 11 | class Solution { 12 | // Function to set highest possible digits at given 13 | // index. 14 | public static void findMaximumNum(char ar[], int k, 15 | Res r) 16 | { 17 | if (k == 0) 18 | return; 19 | int n = ar.length; 20 | for (int i = 0; i < n - 1; i++) { 21 | for (int j = i + 1; j < n; j++) { 22 | // if digit at position i is less than digit 23 | // at position j, we swap them and check for 24 | // maximum number so far. 25 | if (ar[j] > ar[i]) { 26 | char temp = ar[i]; 27 | ar[i] = ar[j]; 28 | ar[j] = temp; 29 | 30 | String st = new String(ar); 31 | 32 | // if current number is more than 33 | // maximum so far 34 | if (r.max.compareTo(st) < 0) { 35 | r.max = st; 36 | } 37 | // calling recursive function to set the 38 | // next digit. 39 | findMaximumNum(ar, k - 1, r); 40 | 41 | // backtracking 42 | temp = ar[i]; 43 | ar[i] = ar[j]; 44 | ar[j] = temp; 45 | } 46 | } 47 | } 48 | } 49 | 50 | // Function to find the largest number after k swaps. 51 | public static void main(String[] args) 52 | { 53 | String str = "129814999"; 54 | int k = 4; 55 | Res r = new Res(); 56 | r.max = str; 57 | findMaximumNum(str.toCharArray(), k, r); 58 | //Print the answer stored in res class 59 | System.out.println(r.max); 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /code/go/02_deklarasiVariabel.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | // tipe-tipe variabel di GO 7 | // 1. String 8 | var kata string 9 | kata = "Halo" 10 | fmt.Println(kata) 11 | /* 12 | Penjelasan : 13 | deklarasi variabel dapat dilakukan dengan "var namavariabel tipevariabel 14 | kemudian diinisiasi nilai atau isi dari variabel tersebut denganan namavariabel = isivariabel 15 | */ 16 | // 2. Integer 17 | /* 18 | Tipe data integer dapat berupa int, int8, int16, int32 dan int64 19 | perbedaan integer di atas adalah nilai yang dapat ditampung. 20 | int tergantung platform. 21 | int8 => -128 sampai 127 22 | int16 => -32768 sampai 32767 23 | int32 => -2147483648 sampai 2147483647 24 | int64 => -9223372036854775808 sampai 9223372036854775807 25 | */ 26 | var angka int = 32 27 | fmt.Println(angka) 28 | 29 | /* 30 | selain cara deklarasi di angka 1, deklarasi variabel juga dapat 31 | dilakukan seperti di angka 2. 32 | */ 33 | 34 | // 3. Tipe data Boolean 35 | /* 36 | Selain string dan integer, go juga memiliki tipe data boolean 37 | yaitu true dan false saja. 38 | */ 39 | trueFalse := true 40 | fmt.Println(trueFalse) 41 | /* 42 | selain angka 1 dan 2, pendeklarasian variabel juga dapat dilakukan seperti 43 | di angka 3 tanpa menulis var 44 | */ 45 | 46 | var angka1, angka2 = 1,2 47 | fmt.Println(angka1, angka2) 48 | /* 49 | langkah di atas adalah pendeklarasian lebih dari 1 variabel dalam 1 baris kode 50 | */ 51 | 52 | kata1, kata2 := "aku", "kamu" 53 | fmt.Println(kata1, kata2) 54 | /* 55 | pendeklarasian tanpa menggunakan var 56 | */ 57 | } -------------------------------------------------------------------------------- /code/Bash/Metasploit-Go/Installer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | RED="\e[31m" 4 | LIME="\e[32m" 5 | ENDCOLOR="\e[0m" 6 | 7 | echo -e "${LIME} #_Metasploit Framework Installer for all Linux By FxFournn@adialamsyahardi.com_# ${ENDCOLOR}" 8 | echo -e "${LIME} Github: https://github.com/adialamsyahardi ${ENDCOLOR}" 9 | sleep 2 10 | 11 | set -eu -o pipefail # Gagal saat Error , debug all lines 12 | 13 | echo -e "${LIME} Download File Instalasi ${ENDCOLOR}" 14 | wget https://downloads.metasploit.com/data/releases/metasploit-latest-linux-x64-installer.run 15 | wget https://downloads.metasploit.com/data/releases/metasploit-latest-linux-x64-installer.run.sha1 16 | echo $(cat metasploit-latest-linux-x64-installer.run.sha1)' 'metasploit-latest-linux-x64-installer.run > metasploit-latest-linux-x64-installer.run.sha1 17 | 18 | sudo -n true 19 | test $? -eq 0 || exit 1 echo -e "${RED} pastiin kamu punya hak root ${ENDCOLOR}" 20 | 21 | echo -e "${LIME} Proses Instalasi Package 1 ${ENDCOLOR}" 22 | while read -r p ; do shasum $p ; done < <(cat << "EOF" 23 | metasploit-latest-linux-x64-installer.run.sha1 24 | EOF 25 | ) 26 | sleep 1 27 | 28 | echo -e "${LIME} Proses Instalasi Package 2 ${ENDCOLOR}" 29 | while read -r p ; do chmod +x $p ; done < <(cat << "EOF" 30 | ./metasploit-latest-linux-x64-installer.run 31 | EOF 32 | ) 33 | sleep 1 34 | 35 | echo -e "${LIME} Proses Instalasi terakhir ${ENDCOLOR}" 36 | echo -e "${LIME} Ctrl+C Untuk membatalkan ${ENDCOLOR}" 37 | echo -e "${LIME} \n ${ENDCOLOR}" 38 | sleep 3 39 | 40 | sudo ./metasploit-latest-linux-x64-installer.run 41 | -------------------------------------------------------------------------------- /code/php/PHP-CRUD/config/database.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 5.0.3 3 | -- https://www.phpmyadmin.net/ 4 | -- 5 | -- Host: localhost 6 | -- Waktu pembuatan: 25 Sep 2021 pada 16.17 7 | -- Versi server: 10.4.14-MariaDB 8 | -- Versi PHP: 7.4.11 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | START TRANSACTION; 12 | SET time_zone = "+00:00"; 13 | 14 | 15 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 16 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 17 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 18 | /*!40101 SET NAMES utf8mb4 */; 19 | 20 | -- 21 | -- Database: `php-crud` 22 | -- 23 | 24 | -- -------------------------------------------------------- 25 | 26 | -- 27 | -- Struktur dari tabel `users` 28 | -- 29 | 30 | CREATE TABLE `users` ( 31 | `id_user` int(11) NOT NULL, 32 | `name` varchar(30) NOT NULL, 33 | `email` varchar(40) NOT NULL, 34 | `address` text NOT NULL, 35 | `message` text NOT NULL 36 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 37 | 38 | -- 39 | -- Indexes for dumped tables 40 | -- 41 | 42 | -- 43 | -- Indeks untuk tabel `users` 44 | -- 45 | ALTER TABLE `users` 46 | ADD PRIMARY KEY (`id_user`); 47 | 48 | -- 49 | -- AUTO_INCREMENT untuk tabel yang dibuang 50 | -- 51 | 52 | -- 53 | -- AUTO_INCREMENT untuk tabel `users` 54 | -- 55 | ALTER TABLE `users` 56 | MODIFY `id_user` int(11) NOT NULL AUTO_INCREMENT; 57 | COMMIT; 58 | 59 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 60 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 61 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 62 | -------------------------------------------------------------------------------- /code/Html_CSS/Navbar Basic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Navbar 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /code/java/Backtracking/unique_subset.java: -------------------------------------------------------------------------------- 1 | /*package whatever //do not write package name here */ 2 | 3 | import java.io.*; 4 | import java.util.*; 5 | 6 | class Unique_subset { 7 | public static void 8 | findSubsets(List> subset, ArrayList nums, ArrayList output, int index) 9 | { 10 | // Base Condition 11 | if (index == nums.size()) { 12 | subset.add(output); 13 | return; 14 | } 15 | 16 | // Not Including Value which is at Index 17 | findSubsets(subset, nums, new ArrayList<>(output), index + 1); 18 | 19 | // Including Value which is at Index 20 | output.add(nums.get(index)); 21 | findSubsets(subset, nums, new ArrayList<>(output), index + 1); 22 | } 23 | 24 | public static void main(String[] args) { 25 | 26 | //Main List for storing all subsets 27 | List> subset = new ArrayList<>(); 28 | 29 | // Input ArrayList 30 | ArrayList input = new ArrayList<>(); 31 | input.add(1); 32 | input.add(2); 33 | input.add(3); 34 | 35 | findSubsets(subset, input, new ArrayList<>(), 0); 36 | 37 | // Comparator is used so that all subset get 38 | // sorted in ascending order of values 39 | Collections.sort(subset, (o1, o2) -> { 40 | int n = Math.min(o1.size(), o2.size()); 41 | for (int i = 0; i < n; i++) { 42 | if (o1.get(i) == o2.get(i)){ 43 | continue; 44 | }else{ 45 | return o1.get(i) - o2.get(i); 46 | } 47 | } 48 | return 1; 49 | }); 50 | 51 | 52 | // Printing Subset 53 | for(int i = 0; i < subset.size(); i++){ 54 | for(int j = 0; j < subset.get(i).size(); j++){ 55 | System.out.print(subset.get(i).get(j) + " "); 56 | } 57 | System.out.println(); 58 | } 59 | 60 | } 61 | } -------------------------------------------------------------------------------- /code/javascript/doublylinkedlist.js: -------------------------------------------------------------------------------- 1 | class DoublyLinkedList { 2 | constructor() { 3 | this.nodes = []; 4 | } 5 | 6 | get size() { 7 | return this.nodes.length; 8 | } 9 | 10 | get head() { 11 | return this.size ? this.nodes[0] : null; 12 | } 13 | 14 | get tail() { 15 | return this.size ? this.nodes[this.size - 1] : null; 16 | } 17 | 18 | insertAt(index, value) { 19 | const previousNode = this.nodes[index - 1] || null; 20 | const nextNode = this.nodes[index] || null; 21 | const node = { value, next: nextNode, previous: previousNode }; 22 | 23 | if (previousNode) previousNode.next = node; 24 | if (nextNode) nextNode.previous = node; 25 | this.nodes.splice(index, 0, node); 26 | } 27 | 28 | insertFirst(value) { 29 | this.insertAt(0, value); 30 | } 31 | 32 | insertLast(value) { 33 | this.insertAt(this.size, value); 34 | } 35 | 36 | getAt(index) { 37 | return this.nodes[index]; 38 | } 39 | 40 | removeAt(index) { 41 | const previousNode = this.nodes[index - 1] || null; 42 | const nextNode = this.nodes[index + 1] || null; 43 | 44 | if (previousNode) previousNode.next = nextNode; 45 | if (nextNode) nextNode.previous = previousNode; 46 | 47 | return this.nodes.splice(index, 1); 48 | } 49 | 50 | clear() { 51 | this.nodes = []; 52 | } 53 | 54 | reverse() { 55 | this.nodes = this.nodes.reduce((acc, { value }) => { 56 | const nextNode = acc[0] || null; 57 | const node = { value, next: nextNode, previous: null }; 58 | if (nextNode) nextNode.previous = node; 59 | return [node, ...acc]; 60 | }, []); 61 | } 62 | 63 | *[Symbol.iterator]() { 64 | yield* this.nodes; 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /code/python/face_recognition-python/main.py: -------------------------------------------------------------------------------- 1 | import cv2 2 | import numpy as np 3 | 4 | #Capture Video 5 | cam = cv2.VideoCapture(0) 6 | 7 | #set the height and width cam 8 | cam.set(3, 550) #lebar 9 | cam.set(4, 550) #tinggi 10 | 11 | #Font what im use 12 | font = cv2.FONT_HERSHEY_SIMPLEX 13 | 14 | #=============================== API ================================= 15 | faceDetector = cv2.CascadeClassifier('API/face.xml') #API Face Recognition 16 | eyesDetector = cv2.CascadeClassifier('API/eyes.xml') #API Eyes Recognition 17 | #===================================================================== 18 | 19 | while True: 20 | retV, frame = cam.read() 21 | abu = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) 22 | faces = faceDetector.detectMultiScale(abu, 1.3, 5) #frame, scaleFactor, minkel 23 | # eyes = eyesDetector.detectMultiScale(abu, 1.3, 5) #frame, scaleFactor, minkel 24 | 25 | #Loop the recognition 26 | for (x, y, w, h) in faces: 27 | frame = cv2.rectangle(frame,(x,y), (x+w, y+h),(255,0,0),2) 28 | frame = cv2.putText(frame, 'Is Faces',(x,y), font, 2 ,(255,0,0),2, cv2.LINE_AA) 29 | roiAbu = abu[y:y+h, x:x+w] 30 | roiWarna = frame[y:y+h, x:x+w] 31 | eyes = eyesDetector.detectMultiScale(roiAbu) 32 | for (xe, ye, we, he) in eyes: 33 | cv2.rectangle(roiWarna, (xe, ye), (xe+we, ye+he), (0,0,255),1) 34 | frame = cv2.putText(frame, 'Is Eyes',(x, w), font, 2 ,(0,0,255),1, cv2.LINE_AA) 35 | 36 | cv2.imshow('Camera', frame) 37 | # cv2.imshow('webcamku', abu) 38 | 39 | #key for closed the window/cam 40 | k = cv2.waitKey(1) & 0xFF 41 | if k == 27 or k == ord('q'): 42 | break 43 | 44 | cam.release() 45 | cv2.destroyAllWindows() -------------------------------------------------------------------------------- /code/cpp/calc_curv.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | 6 | double f(double a){ 7 | double b; 8 | b=a*2; 9 | return b; 10 | } 11 | 12 | double luas(double a, double b, int trap_count, double h){ 13 | double estimate, x; 14 | int i; 15 | 16 | for(i=1; i<= trap_count-1; i++){ 17 | x = a+ i*h; 18 | estimate += f(x); 19 | } 20 | estimate += estimate; 21 | return estimate; 22 | } 23 | 24 | int main() { 25 | int my_n_trap, my_rank, comm_sz, n_trap, h; 26 | double a, b, a_ku, b_ku, luas_trap, total_luas; 27 | 28 | MPI_Init(NULL, NULL); 29 | MPI_Comm_size(MPI_COMM_WORLD, &comm_sz); 30 | MPI_Comm_rank(MPI_COMM_WORLD, &my_rank); 31 | 32 | if (my_rank == 0){ 33 | printf("Masukan a : \n"); 34 | scanf("%lf", &a); 35 | printf("Masukan b : \n"); 36 | scanf("%lf", &b); 37 | printf("Masukan jumlah trapesium : \n"); 38 | scanf("%d", &n_trap); 39 | } 40 | MPI_Bcast(&a, 1, MPI_DOUBLE,0, MPI_COMM_WORLD);//cara singkat kirim terima nilai ke semua proses 41 | MPI_Bcast(&b, 1, MPI_DOUBLE,0, MPI_COMM_WORLD); 42 | MPI_Bcast(&n_trap, 1, MPI_DOUBLE,0, MPI_COMM_WORLD); 43 | 44 | h = (b - a) / n_trap; 45 | my_n_trap = n_trap / comm_sz; 46 | a_ku = a + my_rank*my_n_trap*h; 47 | b_ku = a_ku + my_n_trap*h; 48 | luas_trap = luas(a_ku, b_ku, my_n_trap, h); 49 | 50 | MPI_Allreduce(&luas_trap, &total_luas, 1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD);//cara singkat kirim (ke semua proses) terima nilai dari kalkulasi di proses 0 51 | 52 | if (my_rank==0){ 53 | printf("\nDengan n = %d trapesium, \n",n_trap); 54 | printf("perhitungan luas kita terhadap fungsi y=f(x)\n"); 55 | printf("dari a = %f sampai dengan b = %f adalah %f\n", a, b, total_luas); 56 | } 57 | 58 | MPI_Finalize(); 59 | return 0; 60 | 61 | } 62 | --------------------------------------------------------------------------------