This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
| "meta": { | |
| "theme": "elegant" | |
| }, | |
| "basics": { | |
| "name": "Cenk Ergen", | |
| "label": "Programmer", | |
| "image": "https://media.licdn.com/dms/image/C4E03AQGMzPWhPGF_-Q/profile-displayphoto-shrink_800_800/0/1627889977123?e=1677110400&v=beta&t=vGMMCO6VhExgSIko82AVc7wZq46xrip45GDdCs5J6eM", | |
| "email": "cenk.ergen1@gmail.com", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Script | |
| const crns = []; | |
| const inputs = document.querySelectorAll('input[placeholder="CRN Giriniz."]'); | |
| for(let i = 0; i < crns.length && i < inputs.length; i++) | |
| { | |
| inputs[i].value = crns[i]; | |
| inputs[i].dispatchEvent(new Event("input")); | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <canvas height="320" width="320" id="unsolved"></canvas> | |
| <canvas height="320" width="320" id="solved"></canvas> | |
| <script> | |
| maze = [ | |
| [1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1], | |
| [1,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1], | |
| [1,0,0,1,0,1,1,1,0,0,0,1,0,1,0,1], | |
| [1,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1], | |
| [1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,1], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "default": {}, | |
| "description": "The root schema comprises the entire JSON document.", | |
| "examples": [ | |
| { | |
| "type": "", | |
| "functions": [ | |
| { | |
| "function": "", | |
| "conditions": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="wrapper"> | |
| <div class="description"> | |
| <p>Hello World!</p> | |
| </div> | |
| </div> | |
| <style> | |
| .wrapper { | |
| height: 800px; | |
| width: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| //Struct for Linked List Containing the Student Id Number Digits | |
| typedef struct node{ | |
| //Since the Leading '0's Are Registered as Octal Numbers in C There is No Way to Store the Last 3 Digits of Every Student Number Safely | |
| //Storing Every Digit of The Id is Necessary | |
| int id[3]; | |
| int digit; | |
| struct node * next; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| typedef struct node{ | |
| int id[3]; | |
| int digit; | |
| struct node * next; | |
| }node; | |
| typedef struct entry{ |