Skip to content

Instantly share code, notes, and snippets.

View lacivert's full-sized avatar
🍼
I may be slow to respond.

yasin lacivert

🍼
I may be slow to respond.
View GitHub Profile
@lacivert
lacivert / digitalocean-promo-code-february-march-april-2018.md
Created February 5, 2018 16:24
Digital Ocean Promo Code for Spring 2018 February / March / April 2018

Digital Ocean Promo Code for Spring 2018 February / March / April 2018

Save $25 for your Cloud Computing Solution with Digital Ocean.

How to get the Discount?

1.) Use this link to Sign Up and save your first $10.

2.) Enter the Promocode LOWENDBOX when you choose your payment method and get another $15 discount.

@lacivert
lacivert / gist:11408810
Created April 29, 2014 18:54
nginx PHP örnek default dosyası
server {
listen 80;
root /istedigim/yol/forum;
index index.php index.html index.htm;
server_name istedigim.com www.istedigim.com;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
@lacivert
lacivert / manifest.json
Last active December 16, 2015 07:08
Only Scrobble Youtube
{
"name": "Last.fm Scrobbler",
"version": "1.15",
"description": "Scrobble music all around the web!",
"icons": {
"128": "icon128.png"
},
"manifest_version": 2,
@lacivert
lacivert / isimler.sql
Created October 31, 2011 14:14 — forked from ismailbaskin/turkce_isimler.sql
isim sözlüğü
CREATE TABLE `isimler` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`ad` varchar(255) COLLATE utf8_bin NOT NULL,
`cinsiyet` varchar(50) COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ad` (`ad`),
KEY `cinsiyet` (`cinsiyet`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;