Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View vigo's full-sized avatar
🕶️
I may be slow to respond.

Uğur Özyılmazel vigo

🕶️
I may be slow to respond.
View GitHub Profile
@vigo
vigo / resources.md
Created August 27, 2015 12:21
Resources, libs etc.
on run
tell application "Finder"
get bounds of window of desktop
set DesktopSize to bounds of window of desktop
set DesktopWidth to item 3 of DesktopSize
set DesktopHeight to item 4 of DesktopSize
end tell
tell application "App Store"
activate
set the bounds of the first window to {0, 0, DesktopWidth, DesktopHeight}
@vigo
vigo / turko.js
Created November 28, 2010 19:38
Tumblr için Türkçe'ye çevirme jQuery Plugin'i
<script type="text/javascript" charset="utf-8">
(function($){
$.fn.turko = function(options){
var defaults = {
},
dictionaryItems = {
/* aylar uzun */
'January': "Ocak",
'February': "Şubat",
'March': "Mart",
@vigo
vigo / .nanorc
Created March 15, 2011 10:59
Nano config file
## .css
##############################################################################
syntax "css" "\.css$"
color brightred "."
color brightyellow start="\{" end="\}"
color brightwhite start=":" end="[;^\{]"
color brightblue ":active|:focus|:hover|:link|:visited|:link|:after|:before|$"
color brightblue start="\/\*" end="\\*/"
color green ";|:|\{|\}"
##############################################################################
@vigo
vigo / git-cwd-info.rb
Created February 3, 2012 12:27
Git prompt for Bash
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
# The methods that get called more than once are memoized.
# original:
# https://github.com/benhoskings/dot-files/blob/master/files/bin/git_cwd_info
$RESET = "\e[0m" # reset
@vigo
vigo / stress_test.rb
Created February 9, 2012 13:47
Mini Url checker tool
#!/usr/bin/env ruby
# encoding: utf-8
# Uğur Özyılmazel, ugur@ozyilmazel.com @vigobronx, @ugurozyilmazel
require 'optparse'
require 'open-uri'
require 'uri'
$VERSION = 1.1
@vigo
vigo / keybase.md
Last active October 2, 2015 12:34

Keybase proof

I hereby claim:

  • I am vigo on github.
  • I am vigo (https://keybase.io/vigo) on keybase.
  • I have a public key whose fingerprint is 6EB6 3DE7 F53B 1F2B 83AF 578B EFF1 8B16 572C 9F36

To claim this, I am signing this object:

@vigo
vigo / index.html
Created May 31, 2012 23:06
devPod Tumblr Theme
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{Title}{block:SearchPage}, {lang:Search results for SearchQuery}{/block:SearchPage}{block:PostSummary}, {PostSummary}{/block:PostSummary}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
<meta name="text:Meta Author Name" content=""/>
<meta name="author" content="{text:Meta Author Name}">
<meta name="image:Header" content="" />
@vigo
vigo / powder_bash_completion.sh
Created July 19, 2012 21:40
bash completion for "powder"
# you must install powder gem
#
# gem install powder
#
#
_powder()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
@vigo
vigo / sublime2-python-django.md
Created September 18, 2012 12:16
Sublime Text 2, Python + Django ve Virtualenv ile otomatik tamamlama + PEP kontrolü

Sublime Text 2, Python + Django ve Virtualenv ile otomatik tamamlama + PEP kontrolü

Gerekenler

  1. [Sublime Text 2][1]
  2. [Sublime Paket Yöneticisi][2]

Kurulum

Zaten python, virtualenv vs gibi şeylerin kurulu olduğunu varsayıyorum.