Skip to content

Instantly share code, notes, and snippets.

View Mrjavaci's full-sized avatar
🎯
Focusing

Osman Taha Mrjavaci

🎯
Focusing
View GitHub Profile
@Mrjavaci
Mrjavaci / split-mysql-dump.sh
Created April 22, 2023 01:08 — forked from thanuja919/split-mysql-dump.sh
split-mysql-dump
#!/usr/bin/env bash
#When executing the script keep the main db dump in another folder.
AWK=awk
REGEX_NAME="Current Database: \`(.*)\`"
# Checks argument and prints usage if needed
if [ "$#" -lt "1" ]
then
@Mrjavaci
Mrjavaci / PreventSleep.cs
Created October 4, 2021 12:08 — forked from brianhassel/PreventSleep.cs
Prevent Computer Sleep in C#
internal static class NativeMethods {
public static void PreventSleep() {
SetThreadExecutionState(ExecutionState.EsContinuous | ExecutionState.EsSystemRequired);
}
public static void AllowSleep() {
SetThreadExecutionState(ExecutionState.EsContinuous);
}