Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 02-29-2012, 10:50 AM   #31
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
Searching in the logfile, I found these lines:

PHP Code:
120229:163106 winmgr[1080]: D lua:dbg::vis changed L:A_N:titleBar_ID:system vis =false 
PHP Code:
120229:151445 winmgr[1079]: D lua:dbg::vis changed L:A_N:titleBar_ID:system_TV:force vis =true 
These should be logs of titlebar removed and titlebar restored.
silver18 is offline   Reply With Quote
Old 02-29-2012, 06:37 PM   #32
Nyoxi
Connoisseur
Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.Nyoxi can talk all four legs off a donkey... then persuade it to go for a walk.
 
Posts: 55
Karma: 124493
Join Date: Jan 2012
Device: Kindle Touch
Quote:
Originally Posted by silver18 View Post
I get this using the xwininfo -tree -root command:

PHP Code:
L:A_N:application_ID:com.erez.fullgallery001_PC:
This is strange. Because this is exactly the name you need. Strangely I am able to get the expected result with a name like this if I try:

Code:
xev -name 'L:A_N:application_ID:com.erez.fullgallery001_PC:N'
Nyoxi is offline   Reply With Quote
Advert
Old 03-01-2012, 12:21 PM   #33
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
I just sent you a PM!
silver18 is offline   Reply With Quote
Old 03-06-2012, 05:15 PM   #34
Novo
Enthusiast
Novo began at the beginning.
 
Posts: 34
Karma: 10
Join Date: Dec 2011
Location: Germany
Device: Kindle PW4
Any updates?
This would be so nice if you get something wotking
Novo is offline   Reply With Quote
Old 05-24-2012, 07:00 AM   #35
Ehhh
Connoisseur
Ehhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the rough
 
Posts: 73
Karma: 7140
Join Date: Feb 2012
Device: Kindle Touch
I compiled a simple application testPlayer with gtk. After runnig, i cheked it by a command xwininfo -tree -root. It seems, that it is behind all widows. How to show this application above them?

*.c source code:
#include <gtk/gtk.h>
main(int argc, char *argv[])
{
GtkWidget *window;

gtk_init(&argc, &argv);

window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_title(GTK_WINDOW(window), "Center");
gtk_window_set_default_size(GTK_WINDOW(window), 230, 150);
gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
gtk_widget_show(window);

g_signal_connect_swapped(G_OBJECT(window), "destroy",
G_CALLBACK(gtk_main_quit), NULL);

g_print (" main 0 \n");
gtk_main();
g_print (" main 1 \n");

return 0;
}


logs: xwininfo: Window id: 0x51 (the root window) (has no name)

Root window id: 0x51 (the root window) (has no name)
Parent window id: 0x0 (none)
20 children:
0x1400001 "testPlayer": ("testPlayer" "TestPlayer") 10x10+10+10 +10+10 MapState=IsUnMapped
1 child:
0x1400002 (has no name): () 1x1+-1+-1 +9+9 MapState=IsUnviewable
0x600013 "L:SS_N:screenSaver_FH:F_ID:blanket-adscreensaver_FS:F_O:U": () 600x800+0+0 +0+0 MapState=IsUnMapped
0xc00033 "L:C_N:searchBar_SBTH:70_SBPH:70_ID:system": ("pillowd" "Pillowd") 600x70+0+30 +0+30 MapState=IsViewable

Last edited by Ehhh; 05-24-2012 at 03:57 PM.
Ehhh is offline   Reply With Quote
Advert
Old 05-24-2012, 08:09 AM   #36
Ehhh
Connoisseur
Ehhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the roughEhhh is a jewel in the rough
 
Posts: 73
Karma: 7140
Join Date: Feb 2012
Device: Kindle Touch
I changed the title , and application starts to work well. Thank you!!
Ehhh is offline   Reply With Quote
Old 10-17-2012, 09:11 AM   #37
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
rename "after the fact"

Code:
xprop -name "oldname" -f WM_NAME 8s -set WM_NAME L:D_N:application_ID:newname:false_PC:T_RC:true_O:U
Doesn't cause layer to be topmost as layering is already decided by this point.

Get window id's etc...
Quote:
Grammar for xprop:

xprop [<disp>] [<select option>] <option>* <mapping>* <spec>*

disp ::= -display host:dpy
select option ::= -root | -id <id> | -font <font> | -name <name>
option ::= -len <n> | -notype | -spy | {-formats|-fs} <format file>
mapping ::= {-f|-format} <atom> <format> [<dformat>]
| -remove <propname>
| -set <propname> <value>
spec ::= [<format> [<dformat>]] <atom>
format ::= {0|8|16|32}{a|b|c|i|m|s|t|x}*
dformat ::= <unit><unit>* (can't start with a letter or '-')
unit ::= ?<exp>(<unit>*) | $<n> | <display char>
exp ::= <term> | <term>=<exp> | !<exp>
term ::= <n> | $<n> | m<n>
display char ::= <normal char> | \<non digit char> | \<octal number>
normal char ::= <any char except a digit, $, ?, \, or )>
Control window props

xdotool windowreparent <windowid> <rootid>

[root@kindle root]# xdotool windowreparent 0x1000003 0x51
force topmost.

: ) for my reference

Also helpful:

[root@kindle root]# xdotool windowminimize 0xe00003
[root@kindle root]# xdotool windowminimize 0x1000024

hide the main layers

[root@kindle root]# xdotool windowminimize 0xe00033

hide search bar

Last edited by twobob; 10-17-2012 at 10:20 AM.
twobob is offline   Reply With Quote
Old 10-17-2012, 03:05 PM   #38
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
Helpful awesome refs:

also useful...
http://dev.man-online.org/man1/xdotool/#lbAK
http://www.semicomplete.com/projects...l#window_stack


back to the thrust of the message:
As the id's of the windows are not constant...

[root@kindle root]# xprop -root | grep -o -e [0-9]"x"[a-zA-Z0-9]*
is a place to start getting some values in realtime.

seemingly the root 0x51 is constant at least (not that that helps right now but might)

also:

[root@kindle root]# COUNTER=4; until [ $COUNTER -lt 1 ]; do xdotool search --classname --onlyvisible Pillowd windowminimize;let COUNTER-=1; done

is helpful

[root@kindle root]#
Code:
COUNTER=4; until [  $COUNTER -lt 1 ]; do xdotool search --classname --onlyvisible webreader windowminimize;let COUNTER-=1; done

Get "HOME" ID

[root@kindle root]# xwininfo -tree -root | grep "home" | grep -o -e 0x[a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9]*#

example

Quote:
[root@kindle root]# xwininfo -tree -root | grep "home" | grep -o -e 0x[a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9]*
0x1200002
[root@kindle root]# xdotool windowminimize 0x1200002

Last edited by twobob; 10-17-2012 at 11:36 PM. Reason: more links
twobob is offline   Reply With Quote
Old 10-18-2012, 10:14 AM   #39
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
Spoiler:
go-game.sh
PHP Code:
#xdotool windowminimize 0x1200002  ==
     
for i in $(xwininfo -tree -root grep "home" | \
grep --e 0x[a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9]* ); do
        echo 
item$i
        xdotool windowminimize $i
    done
    
     
for i in $(xwininfo -tree -root grep "blankBackground" | \
grep --e 0x[a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9]* ); do
        echo 
item$i
        xdotool windowminimize $i
    done
    
     
for i in $(xwininfo -tree -root grep "searchBar" | \
grep --e 0x[a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9]* ); do
        echo 
item$i
        xdotool windowminimize $i
    done

# can very occasionally require this twice 
#(awesome getting in the way?) so we do it twice anyways.    
wmctrl -r L:A_N:titleBar_ID:system -'0,0,0,600,1'
wmctrl -r L:A_N:titleBar_ID:system -'0,0,0,600,1' 
stop-games.sh
PHP Code:
#!/bin/sh

  
for i in $( xdotool search --classname webreader ); do
            echo 
item$i
            xdotool windowactivate $i
        done
        
    
#xdotool windowminimize 0x1200002  ==
     
for i in $(xwininfo -tree -root grep "home" | \
grep --e 0x[a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9]* ); do
        echo 
item$i
        xdotool windowactivate $i
    done
    
     
for i in $(xwininfo -tree -root grep "blankBackground" | \
grep --e 0x[a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9]* ); do
        echo 
item$i
        xdotool windowactivate $i
    done
    
     
for i in $(xwininfo -tree -root grep "searchBar" | \
grep --e 0x[a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9][a-z0-9]* ); do
        echo 
item$i
        xdotool windowactivate $i
    done

wmctrl 
-r L:A_N:titleBar_ID:system -'0,0,0,600,30' 


mirrored at https://www.mobileread.com/forums/sho...16&postcount=4

I'm currently testing that as a one shot solution. few issue with statusbar being "hid" long term, may do a geometry workaround in the medium term. geometry workaround now in place.

Otherwise Now useful. Provides a complete "safe" screen tear-down and build-back.

EDIT: To use these tools the way I use them:
I configure my system as outlined at minimodding.

http://minimodding.com/article9-Kind...ng-custom-apps

Cheers
Attached Files
File Type: gz xdotool-kindle-touch-mnt-us.tar.gz (712.6 KB, 468 views)

Last edited by twobob; 10-19-2012 at 09:59 AM. Reason: I'lll add the tool, minimodding link
twobob is offline   Reply With Quote
Old 10-18-2012, 02:39 PM   #40
geekmaster
Carpe diem, c'est la vie.
geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.
 
geekmaster's Avatar
 
Posts: 6,433
Karma: 10773668
Join Date: Nov 2011
Location: Multiverse 6627A
Device: K1 to PW3
Dude! Code in indent-killing quote blocks? What's up with that? How about some nice colorful php blocks, or at least correctly formatted code blocks, eh?

I like to set font size = 1 in code blocks (Advanced edit mode) to fit more on the visible line width.

Last edited by geekmaster; 10-18-2012 at 02:42 PM.
geekmaster is offline   Reply With Quote
Old 10-18-2012, 03:50 PM   #41
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
Quote:
Originally Posted by geekmaster View Post
Dude! Code in indent-killing quote blocks? What's up with that? How about some nice colorful php blocks, or at least correctly formatted code blocks, eh?

I like to set font size = 1 in code blocks (Advanced edit mode) to fit more on the visible line width.
just trying to "get it done". will tidy though : )

Feel free to refactor it into a method-based call. I haven't bothered yet but obviously that would be tidier.

Last edited by twobob; 10-19-2012 at 09:53 AM. Reason: method
twobob is offline   Reply With Quote
Old 12-04-2012, 10:11 AM   #42
sergeyvl12
ebook fan
sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.
 
Posts: 735
Karma: 2528718
Join Date: Dec 2010
Device: PocketBook 301+, Kindle 3 Wi-Fi, Onyx Boox A62, Kindle Touch
X apps on Kindle Paperwhite

Hi!

Kindle Paperwhite

Does anybody know whether the Kindle Touch window naming rule also works for Paperwhite?

can anybody test the following command

xev -name L:A_N:application_ID:somename_M:false_PC:N

will it work (show blank window) with Paperwhite?

Thanks!
sergeyvl12 is offline   Reply With Quote
Old 12-04-2012, 10:36 AM   #43
h1uke
Zealot
h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.
 
Posts: 121
Karma: 82565
Join Date: Aug 2010
Location: Maryland, USA
Device: dxg, k3w,k4nt,kpw
Quote:
Originally Posted by sergeyvl12 View Post
can anybody test the following command

xev -name L:A_N:application_ID:somename_M:false_PC:N

will it work (show blank window) with Paperwhite?
this command shows a blank screen with a small rectangle in the upper left corner.
Stays untill interrupted by Ctrl/C. Sends the following output to the console:

Spoiler:
Code:
[root@kindle share]# xev -name L:A_N:application_ID:somename_M:false_PC:N
xev:  XSetLocaleModifiers failed
xev:  XOpenIM failed
Outer window is 0x1400001, inner window is 0x1400002

PropertyNotify event, serial 8, synthetic NO, window 0x1400001,
    atom 0x27 (WM_NAME), time 14743682, state PropertyNewValue

PropertyNotify event, serial 9, synthetic NO, window 0x1400001,
    atom 0x22 (WM_COMMAND), time 14743682, state PropertyNewValue

PropertyNotify event, serial 10, synthetic NO, window 0x1400001,
    atom 0x28 (WM_NORMAL_HINTS), time 14743682, state PropertyNewValue

CreateNotify event, serial 11, synthetic NO, window 0x1400001,
    parent 0x1400001, window 0x1400002, (10,10), width 50, height 50
border_width 4, override NO

PropertyNotify event, serial 14, synthetic NO, window 0x1400001,
    atom 0x125 (WM_PROTOCOLS), time 14743683, state PropertyNewValue

MapNotify event, serial 15, synthetic NO, window 0x1400001,
    event 0x1400001, window 0x1400002, override NO

PropertyNotify event, serial 17, synthetic NO, window 0x1400001,
    atom 0x12d (WM_STATE), time 14743692, state PropertyNewValue

ConfigureNotify event, serial 17, synthetic NO, window 0x1400001,
    event 0x1400001, window 0x1400001, (0,0), width 178, height 178,
    border_width 2, above 0x1200090, override NO

PropertyNotify event, serial 17, synthetic NO, window 0x1400001,
    atom 0x118 (_NET_WM_STATE), time 14743693, state PropertyNewValue

PropertyNotify event, serial 17, synthetic NO, window 0x1400001,
    atom 0x104 (_NET_WM_DESKTOP), time 14743698, state PropertyNewValue

ConfigureNotify event, serial 17, synthetic NO, window 0x1400001,
    event 0x1400001, window 0x1400001, (0,0), width 754, height 1020,
    border_width 2, above 0x1200090, override NO

ConfigureNotify event, serial 22, synthetic NO, window 0x1400001,
    event 0x1400001, window 0x1400001, (0,0), width 754, height 1020,
    border_width 2, above 0x120001a, override NO

PropertyNotify event, serial 22, synthetic NO, window 0x1400001,
    atom 0x118 (_NET_WM_STATE), time 14743730, state PropertyNewValue

MapNotify event, serial 22, synthetic NO, window 0x1400001,
    event 0x1400001, window 0x1400001, override NO

VisibilityNotify event, serial 22, synthetic NO, window 0x1400001,
    state VisibilityUnobscured

Expose event, serial 22, synthetic NO, window 0x1400001,
    (0,0), width 754, height 10, count 3

Expose event, serial 22, synthetic NO, window 0x1400001,
    (0,10), width 10, height 58, count 2

Expose event, serial 22, synthetic NO, window 0x1400001,
    (68,10), width 686, height 58, count 1

Expose event, serial 22, synthetic NO, window 0x1400001,
    (0,68), width 754, height 952, count 0

EnterNotify event, serial 22, synthetic NO, window 0x1400001,
    root 0x51, subw 0x0, time 14743734, (123,726), root:(125,728),
    mode NotifyNormal, detail NotifyNonlinear, same_screen YES,
    focus NO, state 0

KeymapNotify event, serial 22, synthetic NO, window 0x0,
    keys:  2   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0

FocusIn event, serial 22, synthetic NO, window 0x1400001,
    mode NotifyNormal, detail NotifyNonlinear

KeymapNotify event, serial 22, synthetic NO, window 0x0,
    keys:  34  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0
h1uke is offline   Reply With Quote
Old 12-04-2012, 11:22 AM   #44
sergeyvl12
ebook fan
sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.sergeyvl12 ought to be getting tired of karma fortunes by now.
 
Posts: 735
Karma: 2528718
Join Date: Dec 2010
Device: PocketBook 301+, Kindle 3 Wi-Fi, Onyx Boox A62, Kindle Touch
h1uke,

Thanks!
sergeyvl12 is offline   Reply With Quote
Old 12-04-2012, 12:54 PM   #45
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
EDIT: Meh. nothing
twobob is offline   Reply With Quote
Reply

Tags
k5 tools

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Content Apps that run on Kindle 4 without keyboard Blog Kindle Amazon Kindle 8 04-14-2014 04:06 AM
Run Android Apps on your Windows PC Dave_S Android Devices 4 04-13-2012 06:52 PM
Development poll: Google mobile native apps @ PE/EE and able to Sync! at Ermine final release kksh enTourage Archive 23 05-23-2011 02:05 PM
PRS-500 Why no native Reader apps? curiouser Sony Reader Dev Corner 28 05-10-2007 04:08 PM


All times are GMT -4. The time now is 05:50 AM.


MobileRead.com is a privately owned, operated and funded community.