Halaman

Senin, 09 Mei 2016

small router snippet

. Senin, 09 Mei 2016 .

  1. class Router(object):  
  2.   
  3.     def __init__(self, server):  
  4.         self.__routes = []  
  5.         self.__server = server  
  6.   
  7.     def addRoute(self, regexp, controller, action):  
  8.         self.__routes.append({'regexp': regexp, 'controller': controller, 'action': action})  
  9.           
  10.     def route(self, path):  
  11.         for route in self.__routes:  
  12.             if re.search(route['regexp'], path):  
  13.                 cls = globals()[route['controller']]  
  14.                 func = cls.__dict__[route['action']]  
  15.                 obj = cls(self.__server)  
  16.                 apply(func,(obj, ))  
  17.                 return  
  18.   
  19.         # Not found  
  20.         self.__server.send_response(404)  
  21.         self.__server.end_headers() 

(Read More..)

Minggu, 03 April 2016

ARToolKit

. Minggu, 03 April 2016 .

http://www.artoolkit.org/

The world's most widely used
tracking library for augmented reality.

(Read More..)

tmuxomatic

.

A completely different kind of tmux session manager.

Introduction

Other tmux session managers require pages of documentation for basic use, and define windows using a complicated nesting of pane splits. Instead, tmuxomatic is so easy that anyone could use it after just one example. Yet tmuxomatic is more flexible and more powerful than other tmux session managers.
At the heart of tmuxomatic is the windowgram, a better way of arranging tmux windows. The windowgram is a rectangle comprised of alphanumeric characters (0-9, a-z, A-Z). Each character grouping identifies the name, position, size, and shape of a pane. It should take only one example to demonstrate the power and flexibility of the windowgram.


 https://github.com/oxidane/tmuxomatic

(Read More..)

bcc

.

Dynamic Tracing Tools for Linux

https://iovisor.github.io/bcc/ 

(Read More..)

KONG !!!!

.

Secure, Manage & Extend your APIs and Microservices

 The open-source management layer for APIs, delivering high performance and reliability.

 

https://getkong.org/

 

(Read More..)

Sabtu, 19 Maret 2016

pupy Remote Administration Tool with an embedded Python interpreter.

. Sabtu, 19 Maret 2016 .

Pupy is an opensource, multi-platform (Windows, Linux, OSX, Android) Remote Administration Tool with an embedded Python interpreter.  
 

(Read More..)

LINE mesengger python

.

https://github.com/carpedm20/LINE
http://carpedm20.blogspot.co.id/2013/09/line-reverse-engineering.html
http://www.speedytown.com/2015/12/bookmark-membuat-aplikasi-line.html
http://dev.im-bot.com/line/

(Read More..)
 
{nama-blog-anda} is proudly powered by Blogger.com | Template by Agus Ramadhani | o-om.com