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 / python-tips.md
Created November 4, 2012 22:52
Python Tips

Python Tips

@vigo
vigo / git-tips-00-main.md
Last active January 15, 2023 22:45
Git Tips

Git İpuçları

Genel Bilgiler

Her komut ile ilgili yardımı komut satırından alabilirsiniz:

git help
git help add                 # git-add hakkında yardım
git help merge               # git-merge hakkında yardım
@vigo
vigo / shell-tips.md
Created November 5, 2012 00:17
Shell Tips

Shell Tips

Yazım Kuralları / Style Guide

if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi # tek satırda if

Renkler

@vigo
vigo / developer-bul.md
Last active December 10, 2015 06:48
Girişimci Yazılımcıyı Nerede ve Nasıl Bulur? (27 Aralık 2012, Fit Startup Toplantısından)

Girişimci, Yazılımıcıyı Nasıl / Nerede Bulur?

Konferanslar

  • [Özgür Web Günleri][a01]
  • [Özgür Yazılım Günleri][a02]
  • [Linux Seminer][a03]
  • [jstanbul][a04]
@vigo
vigo / index.html
Last active December 10, 2015 20:28
git-tips tumblr theme
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{Title}{block:PostTitle} — {PostTitle}{/block:PostTitle}</title>
{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
<meta name="text:Disqus Shortname" content="" />
<meta name="text:Google Analytics ID" content="" />
@vigo
vigo / bunde_complete.sh
Last active July 20, 2016 02:32
Bash completion for bundle
_bundler_complete()
{
if [[ ! `which bundle` ]]; then
return
fi
local cur prev commands
commands="help install update package exec config check list show outdated console open viz init gem platform"
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
@vigo
vigo / flac_to_mp3.sh
Created May 5, 2013 05:09
convert `.flac` to `.mp3` - high quality
#!/usr/bin/env bash
set -e
for flac_file in *.flac; do
f=$(basename "${flac_file}" .flac)
flac -c -d "${flac_file}" | lame --preset insane - "${f}.mp3"
done
@vigo
vigo / links.md
Last active December 20, 2015 21:49
iOS Libs and related links...
@vigo
vigo / index.html
Created August 24, 2013 21:06
coffee test
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Coffee Test</title>
$styles
</head>
<body>
<h1>Coffee Script Tests on iPad</h1>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>webBox.io | web 101 eğitimi, 24 Kasım 2014</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>