Skip to content

Instantly share code, notes, and snippets.

View vertexclique's full-sized avatar
🎛️
https://sptfy.com/QnOi

Theo M. Bulut vertexclique

🎛️
https://sptfy.com/QnOi
View GitHub Profile
@vertexclique
vertexclique / gitshortlog.txt
Created January 5, 2014 19:19
Git Short Log
53 Mahmut Bulut
9 Abdurrahman KOLSUZ
9 Serhat Erdogan
8 Mehmet Emin Akdeniz
1 Erdi Yılmaz
1 meakdeniz
1 waffle.io
@vertexclique
vertexclique / gitreflog.txt
Created January 5, 2014 19:12
Nodian git reflog
a7843f9 HEAD@{0}: reset: moving to a7843f93f8a1014e6cbb56b1f939471427a7b862
990abd6 HEAD@{1}: commit: user
579c9fa HEAD@{2}: commit: procfile
a7843f9 HEAD@{3}: commit: typo mistakes
ce86218 HEAD@{4}: pull origin master: Fast-forward
1b45fe9 HEAD@{5}: commit: waflle workflow
23d44af HEAD@{6}: commit: twitter username baby ^_^
d7d2a18 HEAD@{7}: commit: replaceall prototype and auto compile workout
e8f2c0a HEAD@{8}: pull origin master: Fast-forward
5fbc617 HEAD@{9}: pull origin master: Fast-forward
@vertexclique
vertexclique / gitlog.txt
Last active January 2, 2016 07:49
Nodian git log
commit a7843f93f8a1014e6cbb56b1f939471427a7b862
Author: Mahmut Bulut <mahmutbulut0@gmail.com>
Date: Fri Nov 29 21:37:21 2013 +0200
typo mistakes
commit ce86218764e3097b0a9d4321122b25ccef9cf99c
Merge: 1b45fe9 d636643
Author: Mahmut Bulut <mahmutbulut0@gmail.com>
Date: Fri Nov 29 11:31:09 2013 -0800
@vertexclique
vertexclique / epuzzle.lisp
Last active December 31, 2015 10:59
Eight Puzzle in Common Lisp
;;; The 8 puzzle
;;; (defpackage :eightpuzzle
;;; (:use :common-lisp)
;;; (:export #:main #:run))
;;; (in-package :eightpuzzle)
;;; For using with Lispworks
;;;
;;; (deliver `runeight "eight-puzzle" 0 :multiprocessing t)
@vertexclique
vertexclique / code.geek
Created December 8, 2013 16:35
geek code of me
-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GB/CS/CC/E/FA/G/IT/M/MU/P/S/SS/TW d-(++)? s++: a-- C+++$>++++
UBLVSCX*+++(on)$>++++ P++(+++)>++++$ L++++$ E++ W++ N+ !o-- K+ w? O M++$ V
!PS !PE Y+>++ PGP(+) t+ 5 X R- tv-- b+++>++++ DI+ D G e++>++++ h>+ r@ y?
------END GEEK CODE BLOCK------
@vertexclique
vertexclique / dijkstra.cpp
Created November 11, 2013 09:40
Dijkstra algorithm implementation in c++
//
// main.cpp
// dijkstra
//
// Created by Mahmut Bulut on 11/11/13.
// Copyright (c) 2013 Mahmut Bulut. All rights reserved.
//
#include <unordered_map>
#include <vector>
@vertexclique
vertexclique / albumdownloader.sh
Created November 5, 2013 23:07
Album downloader ^_^
#!/usr/bin/expect -f
set timeout 60000
# 100 minutes enough ha?
puts "Im fabulous babe!"
puts "~~ A Shell In The Pit - Mammals ~~"
puts "Transferring Black Rhino"
spawn wget -O "A Shell In The Pit - Black Rhino.mp3" --no-http-keep-alive http://p0.bcbits.com/download/track/8cb055e1661f141ff85cd1a830113aee/mp3-128/2362108950?c22209f7da1bd60ad42305bae71896761f6cd1f4d6c29bf401ef7f91bb0d325fa889ec1c2fd4daf2e9b6963b841f7f81ff818249deacbdff0da80e0004922e8eae8579e6d4c9aaf9536d9c91e004b10f6f3a0df0316bbd47f3ac85758f936cb469ca1c95f085022cd586b1dcdc27f34dc6e941f5139e627d2f2b10443d5208384ee363941c6eb9a63a8532&fsig=95ec4ccd4f2f26049270b53f7901ab0a&id=2362108950&stream=0
expect "saved"
send "\r"
@vertexclique
vertexclique / bwdaddbuff.s
Last active December 25, 2015 21:49
Comp. Arch. hw.4Write a full program that add two 8 byte numbers and store result in 8 byte reserved memory location, called R.
//
// bwdaddbuff.s
// bwdaddbuff
//
// Created by Mahmut Bulut on 10/11/13.
// Copyright (c) 2013 Mahmut Bulut. All rights reserved.
//
#.intel_syntax
@vertexclique
vertexclique / brownian.sh
Created August 14, 2013 20:02
brownian installation
easy_install pip
pip install virtualenv
virtualenv Brownian
cd Brownian
source ./bin/active
pip install PyTZ==2013b
pip install git+https://github.com/grigorescu/Brownian.git
export DJANGO_SETTINGS_MODULE=Brownian.settings
echo "Please look for the sqlite database creation and server start commands."
@vertexclique
vertexclique / batchimport.m
Created July 21, 2013 03:59
Matlab toplu resim import kodu
%% load if and only if jpg...
imagepath = '/Users/vertexclique/Desktop/SAMPLES';
patternname = '*.jpg';
imagelist = dir(fullfile(imagepath,patternname));
imdata = cell(1,numel(imagelist));
parfor k=1:numel(imagelist)
imdata{k} = imread(fullfile(imagepath,imagelist(k).name));
end