Skip to content

Instantly share code, notes, and snippets.

View BerkeKaragoz's full-sized avatar
🚥
Focusing

E. Berke Karagöz BerkeKaragoz

🚥
Focusing
View GitHub Profile
@BerkeKaragoz
BerkeKaragoz / BerkeKaragoz.code-profile
Last active December 2, 2023 12:09
BerkeKaragoz VSCode Settings
{"name":"BerkeKaragoz","settings":"{\"settings\":\"{\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"editor.formatOnSave\\\": true,\\n \\\"[typescriptreact]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"indentRainbow.colorOnWhiteSpaceOnly\\\": true,\\n \\\"[typescript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[scss]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[html]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[javascript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[json]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[jsonc]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"githubPullRequests.pullBranch\\\": \\\"never\\\",\\n \\\"typescript.preferences.importMod
@BerkeKaragoz
BerkeKaragoz / git-branch-prefix-done.sh
Created August 15, 2023 09:18
Add `/done` prefix to local branches
for branch in $(git branch | sed 's/\*//'); do
if [[ $branch != */* && $branch != "master" && $branch != "main" ]]; then
git branch -m $branch done/$branch
fi
done
@BerkeKaragoz
BerkeKaragoz / replace-symlinks-by-orig.js
Created May 29, 2022 16:04
Replaces the symlinks with their targets
@BerkeKaragoz
BerkeKaragoz / send-video-express.js
Created May 11, 2022 17:41
Send video chunk by chunk
if (!req.headers.range) {
res.sendFile(fileAbsolutePath, { maxAge: '2 days' }, (err) => {
if (err) console.error(err);
});
} else {
const { size, blksize } = statSync(fileAbsolutePath);
const chunkSizeTarget = 10 ** 7 / 2;
const chunkSize = Math.floor(chunkSizeTarget / blksize) * blksize;
@BerkeKaragoz
BerkeKaragoz / simple-set-downloader.py
Created March 20, 2022 20:32
Simple File Set Downloader
"""
Simple File Set Downloader, berkekaragoz.com
Example
Lets say that we want to download all files starting from:
https://example.com//assets/file-01.zip
to
https://example.com/assets/file-30.zip
@BerkeKaragoz
BerkeKaragoz / Shutdown_Timer.ps1
Last active May 29, 2022 16:03
Shuts down the PC without the pop-up warning after X minutes (Powershell)
$time = Read-Host -Prompt "Minutes to wait before shutdown"
$host.privatedata.ProgressForegroundColor = "white";
while ($time -ne 1){
Write-Progress "$time minutes left to shutdown. Close to cancel."
$time = $time - 1
sleep 60
}
@BerkeKaragoz
BerkeKaragoz / hp-qc.reg
Last active May 29, 2022 16:03
High Prioritize Quake Champions Permanently (Regedit)
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\QuakeChampions.exe\PerfOptions]
"CpuPriorityClass"=dword:00000003