Skip to content

Instantly share code, notes, and snippets.

View bsormagec's full-sized avatar
:shipit:
Signing new blocks..

Burak Sormageç bsormagec

:shipit:
Signing new blocks..
  • Laravel, Blockchain, Web3, Solidity, NodeJs
  • Toronto,Canada
  • X @bsormagec
View GitHub Profile
@bsormagec
bsormagec / openssl_encrypt_decrypt.php
Created April 24, 2018 10:05 — forked from joashp/openssl_encrypt_decrypt.php
Simple PHP encrypt and decrypt using OpenSSL
<?php
/**
* simple method to encrypt or decrypt a plain text string
* initialization vector(IV) has to be the same when encrypting and decrypting
*
* @param string $action: can be 'encrypt' or 'decrypt'
* @param string $string: string to encrypt or decrypt
*
* @return string
*/
@bsormagec
bsormagec / encrypt-decrypt.php
Created April 24, 2018 09:21 — forked from richjenks/encrypt-decrypt.php
Simple PHP Encryption & Decryption
<?php
/**
* Simple PHP Encryption functions
*
* Attempts to be as secure as possible given:
*
* - Key can be any string
* - No knowledge of encryption is required
* - Only key and raw/encrypted string is needed at each end
@bsormagec
bsormagec / AES-256 encryption and decryption in PHP and C#.md
Created April 24, 2018 09:21
AES-256 encryption and decryption in PHP and C#

AES-256 encryption and decryption in PHP and C#

Update: There is a more secure version available. Details

PHP

<?php

$plaintext = 'My secret message 1234';
@bsormagec
bsormagec / migrating-from-mysql-to-postgres.rst
Created March 24, 2018 13:01 — forked from igniteflow/migrating-from-mysql-to-postgres.rst
Migrating from MySQL to Postgres in Ubuntu

Migrating from MySQL to Postgres in Ubuntu

Dump your database:

mysqldump --compatible=postgresql --default-character-set=utf8 -r databasename.mysql -u root databasename

Convert the dump to Postgres syntax using https://github.com/lanyrd/mysql-postgresql-converter:

wget https://raw.github.com/lanyrd/mysql-postgresql-converter/master/db_converter.py
@bsormagec
bsormagec / memcache-top
Created March 23, 2018 20:53
memcache-top
#!/usr/bin/perl -w
################################################################################
# memcache-top.pl
#
# "top" for memcache - watch the traffic and other stats in real-time. Yoikes.
#
# NOTES:
#
# If Getopt::Long is installed:
@bsormagec
bsormagec / Readme.md
Created February 23, 2018 10:23
Import Google Chrome Paswords to 1Password

This code snippet is for exporting passwords stored in Google Chrome for use in 1Password. It generates a 1Password compatiable CSV file.

NOTE: Your password are exported as plain text. Take proper precautions when storing the file and use a secure deletion tool.

To export your passwords follow these steps:

  • visit chrome://settings/passwords
  • Open the Chrome console (Mac: [Cmd] + [Option] + J / Windows or Linux: [Ctrl] + [Shift] + J`)
@bsormagec
bsormagec / default
Created January 9, 2018 12:26 — forked from dtomasi/default
Brew Nginx PHP7
server {
listen 80;
server_name localhost;
root /Users/YOUR_USERNAME/Sites;
access_log /Library/Logs/default.access.log main;
location / {
include /usr/local/etc/nginx/conf.d/php-fpm;
}
@bsormagec
bsormagec / MongoDB_macOS_Sierra.md
Created January 9, 2018 12:25 — forked from nrollr/MongoDB_macOS_Sierra.md
Install MongoDB on Sierra using Homebrew

Install MongoDB on macOS Sierra

This procedure explains how to install MongoDB using Homebrew on macOS Sierra 10.12.
Official MongoDB install documentation: here

Install Homebrew

  • Installing Homebrew is effortless, open Terminal and enter :
    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
@bsormagec
bsormagec / varnish-purge-cache.sh
Created December 11, 2017 12:44 — forked from andrezrv/varnish-purge-cache.sh
Purge all Varnish cache.
# Purge all Varnish cache
varnishadm "ban req.url ~ /"
@bsormagec
bsormagec / setup_wp.sh
Created December 4, 2017 21:34 — forked from emmanuelstroem/setup_wp.sh
setup_wordpress_ubuntu
#!/bin/sh
export DEBIAN_FRONTEND="noninteractive"
# command line arguments
if [ $# -gt 0 ]; then
echo "Your command line contains $# arguments"
domain_name="$1"
else
echo "Your command line contains no arguments"
domain_name="emmanuelopio"