Skip to content

Instantly share code, notes, and snippets.

View Burakhan's full-sized avatar
🎯
Focusing

Burakhan Ozyol Burakhan

🎯
Focusing
View GitHub Profile
namespace: burakhan
database:
defines: runnable
inherits: postgres/12
variables:
db-user:
value: mattermost
db-password:
value: mmuser_password
namespace: burakhan
db:
defines: runnable
variables:
image-tag:
type: string
value: latest
rpc-port:
type: int
@Burakhan
Burakhan / csv.php
Last active February 8, 2019 13:13
symfony csv semicon reader
$serializer = $this->getContainter('serializer');
$data = $serializer->decode(file_get_contents('./data/tum_kazanimlar.csv'), 'csv', ['csv_delimiter' => ';']);
for($i = 0; $i < 2 ; $i++) {
dump($data[$i]);
}
#EXTM3U
#EXT-X-STREAM-INF:BANDWIDTH=390000,CODECS="avc1.4d0015,mp4a.40.2",RESOLUTION=426x240
http://www.youtube.com/api/manifest/hls_playlist/id/5025ba90a349f1cc/itag/92/source/yt_live_broadcast/ratebypass/yes/cmbypass/yes/playlist_type/LIVE/maudio/1/pmbypass/yes/upn/Rwg0UFeZvSM/sver/3/ip/85.30.32.34/ipbits/8/expire/1346084679/sparams/ip,ipbits,expire,id,itag,source,ratebypass,cmbypass,playlist_type,maudio,pmbypass/signature/3119B02572030AFBACA74E48C615B33E1EC9B0F7.40D6BBE13D23D9A6EDDD0156F788D6A02F1B54E8/key/ck1/file/index.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=1337000,CODECS="avc1.4d001e,mp4a.40.2",RESOLUTION=640x360
http://www.youtube.com/api/manifest/hls_playlist/id/5025ba90a349f1cc/itag/93/source/yt_live_broadcast/ratebypass/yes/cmbypass/yes/playlist_type/LIVE/maudio/1/pmbypass/yes/upn/Rwg0UFeZvSM/sver/3/ip/85.30.32.34/ipbits/8/expire/1346084679/sparams/ip,ipbits,expire,id,itag,source,ratebypass,cmbypass,playlist_type,maudio,pmbypass/signature/0C01ACC5F2B8525D9EC14CC0A220D78604A42BFB.351021DBDB4CEEF0DDA9148769
@Burakhan
Burakhan / install_ffmpeg_ubuntu.sh
Last active June 1, 2018 06:01 — forked from xdamman/install_ffmpeg_ubuntu.sh
Install latest ffmpeg on ubuntu 12.04 or 14.04
#!/bin/bash
cd wget https://www.nasm.us/pub/nasm/releasebuilds/2.13.03/nasm-2.13.03.tar.gz
tar xzvf nasm-2.13.03.tar.gz
cd nasm-2.13.03
./configure
make
make install
# Bash script to install latest version of ffmpeg and its dependencies on Ubuntu 12.04 or 14.04
# Inspired from https://gist.github.com/faleev/3435377
scrapy startproject tutorial
scrapy crawl news_spider
from django.contrib import admin
from .models import Post
admin.site.register(Post)
@Burakhan
Burakhan / cx_oracle.md
Created March 8, 2018 07:54 — forked from kimus/cx_oracle.md
Installing python cx_oracle on Ubuntu

First of all, it just seems like doing anything with Oracle is obnoxiously painful for no good reason. It's the nature of the beast I suppose. cx_oracle is a python module that allows you to connect to an Oracle Database and issue queries, inserts, updates..usual jazz.

Linux

Step 1:

sudo apt-get install build-essential unzip python-dev libaio-dev

Step 2. Click here to download the appropriate zip files required for this. You'll need:

@Burakhan
Burakhan / delete_cascade.sql
Created December 31, 2016 22:20
postgres cascade delete
-- select delete_cascade('public','my_table','1');
create or replace function delete_cascade(p_schema varchar, p_table varchar, p_key varchar, p_recursion varchar[] default null)
returns integer as $$
declare
rx record;
rd record;
v_sql varchar;
v_recursion_key varchar;
recnum integer;
v_primary_key varchar;
@Burakhan
Burakhan / my_sacrifice.md
Created November 8, 2016 23:31
The motherf*cking way the get Oracle access in PHP5 over Ubuntu