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
| #!/bin/bash | |
| GIST_URL="https://gist.githubusercontent.com/GokselKUCUKUCAHIN/30f1240c2a6018c4c97093701ebbffb2/raw/c79e5e6fcf0b3696b43c21c8041c861e8bbe18b9/cursor" | |
| DEST_PATH="/usr/local/bin/cursor" | |
| echo "Downloading cursor script from Gist..." | |
| curl -fsSL "$GIST_URL" -o "$DEST_PATH" | |
| echo "Giving execute permissions to the script..." | |
| chmod +x "$DEST_PATH" |
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
| res/ | |
| ts/ | |
| js/ | |
| tsconfig.json | |
| test/ | |
| .idea/ | |
| package-lock.json |
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
| # Logs | |
| logs | |
| *.log | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| lerna-debug.log* | |
| # Diagnostic reports (https://nodejs.org/api/report.html) | |
| report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
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
Show hidden characters
| { | |
| "compilerOptions": { | |
| "module": "commonjs", | |
| "target": "ESNext", | |
| "sourceMap": false, // default true | |
| "outDir": "./js", | |
| "rootDir": "./ts", | |
| "moduleResolution": "node", | |
| "removeComments": true, | |
| "declaration": true // default false |
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
| ncu -u && npm i && rm -rf node_modules |
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
| import {using, Disposable} from "using-statement"; | |
| import {Mixin} from "ts-mixer"; | |
| import {EventEmitter} from "events"; | |
| class Walker { | |
| walk() { | |
| console.log("walking..."); | |
| } | |
| } |
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> | |
| #include <string.h> | |
| #include <math.h> | |
| void Binary(void); | |
| void Octal(void); | |
| void Hexadecimal(void); | |
| void BinaryDecimal(void); | |
| void OctalDecimal(void); |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Snake_2 | |
| { | |
| class Program | |
| { |
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> | |
| int main(void) | |
| { | |
| char cumle[] = "Merhaba Dunya"; | |
| int say=0; | |
| int i; | |
| for (i=0; cumle[i] != '\0';i++) |
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> | |
| //Dörtgen çizme yazılımı | |
| int main(void) | |
| { | |
| int x,y; //kordinat değişkenlerim | |
| printf("X ekseni -> "); scanf("%d",&x); //X kordinatı | |
| printf("Y ekseni -> "); scanf("%d",&y); //Y kordinatı | |
| printf("x=%d, y=%d\n\n",x,y); //aldığımız değerler | |
| int i,j; |
NewerOlder