Drawing in PDF

2009-06-29 Thread Jun
HEllo, I've a pdf file, and i want to draw some additional stuff on it, by example : some markup notation. Anyone has idea how to do that ? thank you in advance. -- http://mail.python.org/mailman/listinfo/python-list

Re: Drawing in PDF

2009-06-29 Thread Jun
On Jun 30, 12:09 am, Emile van Sebille wrote: > On 6/29/2009 2:51 PM Jun said... > > > HEllo, > > > I've a pdf file, and i want to draw some additional stuff on it, by > > example : some markup notation. Anyone has idea how to do that ? > > thank you

Re: Drawing in PDF

2009-06-29 Thread Jun
On Jun 30, 12:22 am, Emile van Sebille wrote: > On 6/29/2009 3:14 PM Jun said... > > > On Jun 30, 12:09 am, Emile van Sebille wrote: > >> On 6/29/2009 2:51 PM Jun said... > > >>> HEllo, > >>> I've a pdf file, and i want to draw some a

Copy/paste through LAN

2009-07-22 Thread Jun
Thank you in advance. Jun -- http://mail.python.org/mailman/listinfo/python-list

Re: Python-list Digest, Vol 110, Issue 106

2012-11-14 Thread Jun Tanaka
soon. Jun -- http://mail.python.org/mailman/listinfo/python-list

How to get the IP address of the wifi interface?

2011-05-13 Thread Jun Hu
Hi python experts: There are two network interfaces on my laptop, one is 100M Ethernet, the other is wifi, both are connected and have IP addresses. The question is: how to get the ip address of WIFI interface without parsing the output of a shell command like "ipconfig" or "ifconfig"? OS: Windows

Re: Get IP address of WIFI interface

2011-05-14 Thread Jun Hu
Thanks, is there any other way without using external command? On Fri, May 13, 2011 at 10:41 PM, Ishwor Gurung wrote: > Hi. > > On 14 May 2011 14:46, Far.Runner wrote: > > Hi Python Experts: > > There are two network interfaces on my laptop, one is > > 100M Ethernet interface, the other is wifi

Re: Get the IP address of WIFI interface

2011-05-15 Thread Jun Hu
Thanks for the tip, it is really helpful! however the class of Win32_NetworkAdapterConfiguration doesn't include the interface type (you can NOT tell if it is a wifi interface), so I change the code a bit like following: import wmi wlan_int_id=None for nic in wmi.WMI().Win32_NetworkAdapter():

Re: Get the IP address of WIFI interface

2011-05-15 Thread Jun Hu
On Sun, May 15, 2011 at 2:14 PM, Andrew Berg wrote: > > One thing I found out about Win32_NetworkAdapterConfiguration is that it > only contains /current/ information and not the stored info that it uses > when making an initial connection (you can see and edit this info in the > Network and Shari

Re: Get the IP address of WIFI interface

2011-05-16 Thread Jun Hu
Thanks, this code works perfectly in ubuntu 10.04. one question though, is dbus usually implemented in other distribution of linux? On Mon, May 16, 2011 at 12:57 PM, Anssi Saari wrote: > Neal Becker writes: > > One possible solution in Linux is asking NetworkManager, if it's in > use. It knows

process.popen with Japanese args => UTF8 JAVA

2014-03-08 Thread Jun Tanaka
Hello, I have tried to process.popen to run java program with Japanese language. test.java is compiled with utf8 '日本語' below means Japanese in Japanese. but it does not work. Anyone who knows this matter well. Please help. Jun >>>>>>>>python code>&

Re: Threaded Design Question

2007-08-09 Thread Jun-geun Park
[EMAIL PROTECTED] wrote: > Hi all! I'm implementing one of my first multithreaded apps, and have > gotten to a point where I think I'm going off track from a standard > idiom. Wondering if anyone can point me in the right direction. > > The script will run as a daemon and watch a given directory

Re: Biased random?

2007-08-27 Thread Jun-geun Park
Ivan Voras wrote: > Hi, > > I have a list of items, and need to choose several elements from it, > "almost random". The catch is that the elements from the beginning > should have more chance of being selected than those at the end (how > much more? I don't care how the "envelope" of probability l

Re: Biased random?

2007-08-27 Thread Jun-geun Park
Jun-geun Park wrote: > Ivan Voras wrote: >> Hi, >> >> I have a list of items, and need to choose several elements from it, >> "almost random". The catch is that the elements from the beginning >> should have more chance of being selected than those at