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 / RailpowerTest.cs
Created May 3, 2014 00:50
RailPower DLL'in nasıl kullanılacağı
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// needed for dll use
using System.Runtime.InteropServices;
{
"color_scheme": "Packages/Sail Color Scheme/Sail.tmTheme",
"ignored_packages":
[
"Vintage"
],
"tab_size": 4,
"theme": "Watson.sublime-theme",
"translate_tabs_to_spaces": true
}
@vertexclique
vertexclique / qconf.patch
Last active August 29, 2015 14:05
qmake.conf diff for Xilinx cross compiler toolset
2c2
< # qmake configuration for building with arm-xilinx-linux-gnueabi-g++
---
> # qmake configuration for building with arm-none-linux-gnueabi-g++
11,14c11,14
< QMAKE_CC = arm-xilinx-linux-gnueabi-gcc
< QMAKE_CXX = arm-xilinx-linux-gnueabi-g++
< QMAKE_LINK = arm-xilinx-linux-gnueabi-g++
< QMAKE_LINK_SHLIB = arm-xilinx-linux-gnueabi-g++
---
Lillian Schwartz (considered a pioneer of computer-mediated art)
Sophie Wilson (builder of instruction set of the ARM processor)
Grace Murray Hopper (builder of cobol, first compiler for a computer programming language)
Joyce Reynolds (RFC writer)
Ginny Strazisar (First gateway)
Kay McNulty }
Betty Snyder }
Marlyn Wescoff } Eniac
Ruth Lichterman } Programmers
Betty Jennings }
@vertexclique
vertexclique / skyjack.c
Last active August 29, 2015 14:10
skyjack.c
//
// main.c
// skyjack
//
// Created by Mahmut Bulut on 23/11/14.
// Copyright (c) 2014 Mahmut Bulut. All rights reserved.
//
// Disable ASLR:
// echo 0 > /proc/sys/kernel/randomize_va_space
//
@vertexclique
vertexclique / heyk.txt
Created December 3, 2014 19:02
whatsapp heyk
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
߿㣿߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿ ߿㋿
@vertexclique
vertexclique / init.el
Last active August 29, 2015 14:19
Emacs Lisp Init conf
;; ========== CODE AID ==========
;; Company mode
(add-hook 'after-init-hook 'global-company-mode)
(global-set-key (kbd "C-s-SPC") 'company-complete)
;; Auto complete mode
;; (global-auto-complete-mode t)
;; Semantics and Navigation
(semantic-mode 1)
int gcd( int a, int b)
{
int temp;
while(b>0)
{
if(a>b)
{temp=a;
a=b;
b=temp;}
@vertexclique
vertexclique / interpolation.m
Created June 4, 2011 09:52
Derive an equation from point like (x,y), its arguments are x=[x0,x1,...,yn] and y=[y0,y1,...,yn]
function interpolation(x,y)
boyut = length(x);
for i=1:boyut
for j=1:boyut
if( j==1) mat(i,j) = 1;
continue;
@vertexclique
vertexclique / distance.m
Created June 4, 2011 09:53
finding the distance between two vectors
function y = distance(a,b)
if length(a) == length(b)
size = length(a);
if size < 2
error('The vectors size must greater than one');
end;
else