This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apk_file=$1 | |
while [ "$apk_file" == "" ] | |
do | |
echo -e $"APK dosyası belirtilmedi. Kullanım: ./decoder.sh dosya.apk. Şimdi aynı dizinde bulunan apk dosyasının adını yazınız" | |
read apk_file | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- coding: utf-8 -*- | |
import re, sys | |
def substr(txt, start, offset) : | |
return txt[start:start+offset] | |
def strtr(txt, src, tgt) : | |
fr = '', | |
i = 0, | |
j = 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf8 -*- | |
''' Project Name : Image_Crop v1.0 | |
Copyright : www.python-s60.com | |
Author: MaRZoCHi (Mehmet Hanoğlu) | |
License : GNU Lisans | |
Date : 27.04.2011 | |
Description : Açık Kaynaklı Proje.İsteyenler Geliştirebilir. | |
''' | |
from appuifw import app,Canvas |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
''' Project Name : SMS Engine for Android | |
Author : by MeHMeT a.k.a MaRZoCHi (Mehmet Hanoğlu) | |
Copyright : www.mehmethanoglu.com.tr | |
License : GNU License | |
Date : 03.11.2012 15:10 | |
Update : | |
''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf8 -*- | |
''' Project Name : Android SQL Database with SQLite3 | |
Author : by MeHMeT a.k.a MaRZoCHi (Mehmet Hanoğlu) | |
Copyright : www.mehmethanoglu.com.tr | |
License : GNU License | |
Date : 08.11.2012 00:54 | |
Update : 12.11.2012 | |
''' | |
__doc__ = 'Android SQL Database with SQLite3' | |
__author__ = 'by MeHMeT a.k.a MaRZoCHi' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import os | |
import time | |
import gobject | |
import glib | |
import gtk | |
import appindicator | |
def _( x ): return x.decode('u8') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf8 -*- | |
''' Project Name : SpecialMessages : 15:05 21.11.2011 | |
Author : by MeHMeT a.k.a MaRZoCHi (Mehmet Hanoğlu) | |
Copyright : www.mehmethanoglu.com.tr | |
License : GNU License | |
Update : 25.02.2012(0.4),06.01.2012(0.3),31.12.2011(0.2),01.01.2012 | |
''' | |
__doc__ = 'SpecialMessages : 15:05 21.11.2011' | |
__author__ = 'by MeHMeT a.k.a MaRZoCHi' | |
__name__ = 'smessages' |