- [Sublime Text 2][1]
- [Sublime Paket Yöneticisi][2]
Zaten python, virtualenv vs gibi şeylerin kurulu olduğunu varsayıyorum.
| #!/bin/bash | |
| # markdown ile yazılan dosyalardan pdf üret. | |
| # Örnek: <betik> ~/examples.md | |
| PATH=/var/lib/gems/1.8/bin:$PATH | |
| [ $# -gt 0 ] || { | |
| echo >&2 "Kullanım: $0 < markdown dosyası>" | |
| echo >&2 "Örnek: $0 ~/examples.md" |
| server { | |
| listen 80; | |
| server_name halitalptekin.com www.halitalptekin.com; | |
| if ($http_host = halitalptekin.com) { | |
| rewrite (.*) http://www.halitalptekin.com$1; | |
| } |
| def accepts(*accepted_types): | |
| def decorated_function(function): | |
| def inner(*passed_args): | |
| for accepted_type, passed_arg in zip(accepted_types, passed_args): | |
| if not isinstance(passed_arg, accepted_type): | |
| raise TypeError | |
| return function(*passed_args) | |
| return inner | |
| return decorated_function |
| using System; | |
| using System.Configuration; | |
| using System.Data; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Security; | |
| using System.Web.UI; | |
| using System.Web.UI.HtmlControls; | |
| using System.Web.UI.WebControls; | |
| using System.Web.UI.WebControls.WebParts; |
| git submodule add http://github.com/tpope/vim-fugitive.git bundle/fugitive | |
| git submodule add https://github.com/msanders/snipmate.vim.git bundle/snipmate | |
| git submodule add https://github.com/tpope/vim-surround.git bundle/surround | |
| git submodule add https://github.com/tpope/vim-git.git bundle/git | |
| git submodule add https://github.com/ervandew/supertab.git bundle/supertab | |
| git submodule add https://github.com/sontek/minibufexpl.vim.git bundle/minibufexpl | |
| git submodule add https://github.com/wincent/Command-T.git bundle/command-t | |
| git submodule add https://github.com/mitechie/pyflakes-pathogen.git | |
| git submodule add https://github.com/mileszs/ack.vim.git bundle/ack | |
| git submodule add https://github.com/sjl/gundo.vim.git bundle/gundo |
| import re | |
| import urllib | |
| urls = [ | |
| "http://eepurl.com/pbre9", | |
| "http://eepurl.com/oZDWD", | |
| "http://eepurl.com/oLWeP" | |
| "http://eepurl.com/ozczX", | |
| "http://eepurl.com/ol9Zf", | |
| "http://eepurl.com/n-ZL5", |
| from PyQt4 import QtCore | |
| from PyQt4 import QtGui | |
| from PyDuino import Ui_PyDuino | |
| import sys, arduino | |
| class readDigital(QtCore.QThread): | |
| def __init__(self, pin): | |
| QtCore.QThread.__init__(self) | |
| self.pin = pin |
| from PyQt4 import QtCore | |
| from PyQt4 import QtGui | |
| from PyDuino import Ui_PyDuino | |
| import sys, arduino | |
| class MainWindow(QtGui.QMainWindow, Ui_PyDuino): | |
| def __init__(self): | |
| QtGui.QMainWindow.__init__(self) | |
| self.setupUi(self) |
| from model import * | |
| from elixir import session | |
| # kurulum yapiliyor | |
| setup_all() | |
| # olusuturuluyor | |
| create_all() | |
| # 1. kayit ekleniyor |