Skip to content

Instantly share code, notes, and snippets.

View mstfydmr's full-sized avatar
🚀
Focusing

Mustafa Aydemir mstfydmr

🚀
Focusing
View GitHub Profile
@mstfydmr
mstfydmr / scan_recursive.go
Last active December 9, 2022 01:02
Go Lang - Scan Folder Recursive. Find all files and folders.
package main
import (
"fmt"
"os"
"path/filepath"
"strings"
"log"
)
@mstfydmr
mstfydmr / apache2_configuration_on_linux
Last active August 2, 2017 16:43
Apache2 Configiration on Linux
# Virtual Host Config
# /etc/apache2/sites-available/criexe.com.conf
<VirtualHost *:80>
ServerName criexe.com
ServerAdmin [email protected]
DocumentRoot /var/www/criexe.com
<Directory "/var/www/criexe.com">
@mstfydmr
mstfydmr / linux_mysql_commands
Created August 2, 2017 16:18
Linux Mysql Commands
# Create User
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
CREATE USER 'newuser'@'%' IDENTIFIED BY 'password';
# Permissions
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'%';
FLUSH PRIVILEGES;