Skip to content

Instantly share code, notes, and snippets.

@emrahoruc
emrahoruc / hba_note.md
Created January 16, 2021 17:06 — forked from raprasad/hba_note.md
Postgres: Update pg_hba.conf for Static IP

Find pg_hba.conf file location

bash-4.1$ psql
psql (8.4.20)
Type "help" for help.

postgres=# SHOW hba_file;
            hba_file             
@emrahoruc
emrahoruc / Postgresql13_Postgis_Pgrouting.md
Created February 1, 2021 11:01
CentOS 7 + Postgresql 13 + Postgis 3.1 + Pgrouting
@emrahoruc
emrahoruc / pgsql.sql
Last active May 30, 2025 23:12
Postgresql Commands
-- Set Id Seq
SELECT setval('tablename_id_seq', (SELECT MAX(id) FROM public.tablename));
-- Log in
sudo -i -u postgres
psql dbname username
-- Backup
sudo -u postgres pg_dump -U postgres -d mydb -F c -f /tmp/mydb.backup
@emrahoruc
emrahoruc / linux-command-lines.md
Last active May 30, 2025 07:43
Linux Command Lines

Compress

tar -cvzf backup.tgz /home/user/project

Extract

tar -xvzf backup.tgz

Copy Lots And Large Files

rsync -avhW --no-compress --progress --exclude 'file_or_dir' /source/ /target/

See Largest 20 Folders

@emrahoruc
emrahoruc / how-to-install-graalvm-linux.md
Created March 5, 2021 17:03 — forked from ricardozanini/how-to-install-graalvm-linux.md
How to install GraalVM on Linux with alternatives

How to Install GraalVM Community Edition on Linux

Note: Tested on Fedora only

  1. Download the new release of GraalVM and unpack it anywhere in your filesystem:
$ tar -xvzf graalvm-ce-1.0.0-rc14-linux-amd64.tar.gz
@emrahoruc
emrahoruc / Coolphpobfuscator.java
Created April 6, 2021 15:58 — forked from MasterEx/Coolphpobfuscator.java
A PHP code obfuscator implemented in java as a proof of concept
package coolphpobfuscator;
import java.io.File;
import java.io.FileNotFoundException;
import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Scanner;
@emrahoruc
emrahoruc / public test videos.txt
Last active November 22, 2021 06:59 — forked from jsturgis/gist:3b19447b304616f18657
public test videos
var mediaJSON = { "categories" : [ { "name" : "Movies",
"videos" : [
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org",
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ],
"subtitle" : "By Blender Foundation",
"thumb" : "images/BigBuckBunny.jpg",
"title" : "Big Buck Bunny"
},
{ "description" : "The first Blender Open Movie from 2006",
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ],
@emrahoruc
emrahoruc / config.php
Created January 27, 2022 00:21
Codeigniter 3.011 base_url detection
<?php
# Source: https://codeigniter.com/userguide3/installation/upgrade_303.html
$config['base_url'] = ['domain1.tld', 'domain2.tld'];
if (in_array($_SERVER['HTTP_HOST'], $config['base_url'], true)) {
$domain = $_SERVER['HTTP_HOST'];
} else {
$domain = $config['base_url'][0];
}
@emrahoruc
emrahoruc / launch.json
Created March 30, 2022 10:29
PHP 7.4 + Xdebug 3.1 + Vscode
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
@emrahoruc
emrahoruc / google-chrome-updater.sh
Created September 2, 2022 15:32
Google Chrome Updater (Ubuntu)
#!/bin/bash
sudo apt-get update
sudo apt-get --only-upgrade install google-chrome-stable