Program to keep track of success percentage

2018-12-08 Thread Musatov
I am thinking about a program where the only user input is win/loss. The program let's you know if you have won more than 31% of the time or not. Any suggestions about how to approach authoring such a program? Thanks. -- https://mail.python.org/mailman/listinfo/python-list

Re: Accessing clipboard through software built on Python

2018-10-27 Thread Musatov
Yes, same site every time. -- https://mail.python.org/mailman/listinfo/python-list

Re: Accessing clipboard through software built on Python

2018-10-27 Thread Musatov
On Saturday, October 27, 2018 at 11:40:57 AM UTC-5, Bob Gailer wrote: > On Oct 27, 2018 9:20 AM, "Musatov" wrote: > > > > I am wondering if Python could be used to write a program that allows: > > > > 1. Highlight some text > > 2. Ctl+HOTKEY1 stores

Re: Accessing clipboard through software built on Python

2018-10-27 Thread Musatov
On Saturday, October 27, 2018 at 11:12:35 AM UTC-5, Marko Rauhamaa wrote: > Michael Torrie : > > As far as I know it's not possible for an application to directly yank > > highlighted text from another application. > > That's an age-old pattern in X11. I don't know if Wayland supports it. > > App

Re: Accessing clipboard through software built on Python

2018-10-27 Thread Musatov
On Saturday, October 27, 2018 at 10:28:00 AM UTC-5, Michael Torrie wrote: > Couple of questions: > On 10/27/2018 07:17 AM, Musatov wrote: > > I am wondering if Python could be used to write a program that allows: > > > > 1. Highlight some text > > 2. Ctl+HOT

Accessing clipboard through software built on Python

2018-10-27 Thread Musatov
COPIEDTEXT1 6. Ctl+HOTKEY2 pastes COPIEDTEXT2 I found "pyperclip" and "Tkinter" but I don't know where to start. Thanks, Musatov -- https://mail.python.org/mailman/listinfo/python-list

Congratulations to the community!

2018-10-03 Thread Musatov
https://www.tiobe.com/tiobe-index// Python #3 ranked language as of 09/2018 UP from #5 last year Musatov -- https://mail.python.org/mailman/listinfo/python-list

Re: Program to find Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1.

2018-10-03 Thread Musatov
On Tuesday, October 2, 2018 at 5:54:30 PM UTC-5, Gary Herron wrote: > On 10/02/2018 01:23 PM, tomusa...@gmail.com wrote: > > Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1. > > DATA > > > > 31, 71, 73, 137, 211, 311, 419, 421, 647, 877, 1117, 1487, 1979, 2447, > > 3079, 3547,

Re: Program to find Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1.

2018-10-03 Thread Musatov
On Wednesday, October 3, 2018 at 11:12:43 AM UTC-5, Michael Torrie wrote: > On 10/03/2018 09:26 AM, Musatov wrote: > > I don't even know where to begin! (I'm reading the Dummies book) > > If you have no experience in computer programming, it's going to be a > st

Re: Program to find Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1.

2018-10-03 Thread Musatov
On Tuesday, October 2, 2018 at 3:49:14 PM UTC-5, Rick Johnson wrote: > Musatov wrote: > > > Well you don't know until you ask. > > Fair enough. > > So, uh, have you made any attempt to compose a Python program from this > assignment? > > If so, don't

Re: Program to find Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1.

2018-10-03 Thread Musatov
On Tuesday, October 2, 2018 at 6:13:01 PM UTC-5, Rick Johnson wrote: > Musatov wrote: > > > I am drafting a sequence for OEIS. > > And, have you tried your hand at any Python code yet? Or any > tutorials? I am reading this: https://doc.lagout.org/programmation/python/Be

Re: Program to find Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1.

2018-10-03 Thread Musatov
On Tuesday, October 2, 2018 at 5:01:43 PM UTC-5, Max Zettlmeißl wrote: > On Tue, Oct 2, 2018 at 10:23 PM, Musatov wrote: > > Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1. > > DATA > > > > 31, 71, 73, 137, 211, 311, 419, 421, 647, 877, 1117, 1487,

Re: Program to find Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1.

2018-10-02 Thread Martin Musatov
I am drafting a sequence for OEIS. I was told Python was most accesible for beginners. On Tue, Oct 2, 2018, 4:48 PM Bob Gailer wrote: > On Oct 2, 2018 4:59 PM, "Musatov" wrote: > > > > Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1. > > DA

Program to find Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1.

2018-10-02 Thread Musatov
Primes of the form prime(n+2) * prime(n+1) - prime(n) +- 1. DATA 31, 71, 73, 137, 211, 311, 419, 421, 647, 877, 1117, 1487, 1979, 2447, 3079, 3547, 4027, 7307, 7309, 12211, 14243, 18911, 18913, 23557, 25439, 28729, 36683, 37831, 46853, 50411, 53129, 55457, 57367, 60251, 67339, 70489

Re: P = (2^N) - Q

2018-09-24 Thread Musatov
Sometimes the simplest things... I am wondering about congruences/patterns in Q. -- https://mail.python.org/mailman/listinfo/python-list

P = (2^N) - Q

2018-09-23 Thread Musatov
If P is the set of primes, how do I write a program outputting the values of Q as an integer sequence with 1 integer of Q for each N? Let the first prime be P1 P1=2 so if N=0, Q=-1 as 2=(2^0) - (-1) Let the second prime be P2 P2=3 so if N=1, Q=-1 as 3=(2^1) - (-1) Let the third prime be P3 P

Re: Generating a specific list of intsgers

2018-08-26 Thread Musatov
On Sunday, August 26, 2018 at 3:21:08 PM UTC-5, Musatov wrote: > On Sunday, August 26, 2018 at 3:07:41 PM UTC-5, Oscar Benjamin wrote: > > On Sun, 26 Aug 2018 at 20:32, Musatov wrote: > > > > > > On Sunday, August 26, 2018 at 2:14:29 PM UTC-5, Oscar Benjamin wrote: >

Re: Writing a program to illustrate a fractal

2018-08-26 Thread Musatov
On Sunday, August 26, 2018 at 3:13:00 PM UTC-5, Oscar Benjamin wrote: > On Sun, 26 Aug 2018 at 20:52, Musatov wrote: > > > > Thank you, Richard. If anyone is interested further, even in writing a > > Python code to generate the sequence or further preparing of an anim

Re: Generating a specific list of intsgers

2018-08-26 Thread Musatov
On Sunday, August 26, 2018 at 3:07:41 PM UTC-5, Oscar Benjamin wrote: > On Sun, 26 Aug 2018 at 20:32, Musatov wrote: > > > > On Sunday, August 26, 2018 at 2:14:29 PM UTC-5, Oscar Benjamin wrote: > > > > > > > > >> On Fri

Re: Writing a program to illustrate a fractal

2018-08-26 Thread Musatov
On Sunday, August 26, 2018 at 2:35:13 PM UTC-5, Richard Damon wrote: > On 8/26/18 1:58 PM, Musatov wrote: > > On Sunday, August 26, 2018 at 12:49:16 PM UTC-5, Richard Damon wrote: > >> On 8/26/18 12:48 PM, Dennis Lee Bieber wrote: > >>>> The sequence is defined by:

Re: Generating a specific list of intsgers

2018-08-26 Thread Musatov
On Sunday, August 26, 2018 at 2:14:29 PM UTC-5, Oscar Benjamin wrote: > On Sat, 25 Aug 2018 at 20:27, Musatov wrote: > > > > On Saturday, August 25, 2018 at 2:18:09 PM UTC-5, Musatov wrote: > > > On Saturday, August 25, 2018 at 1:52:17 PM UTC

Re: Writing a program to illustrate a fractal

2018-08-26 Thread Musatov
On Sunday, August 26, 2018 at 12:49:16 PM UTC-5, Richard Damon wrote: > On 8/26/18 12:48 PM, Dennis Lee Bieber wrote: > >> The sequence is defined by: > >> > >> For 1 <= n <= 3, a(n) = n; thereafter, a(2n) = a(n) + a(n+1), a(2n-1) = > >> a(n) + a(n-2). > >> > > Confusing explanation -- do you

Writing a program to illustrate a fractal

2018-08-26 Thread Musatov
I have an integer sequence of a fractal nature and want to know if it is possible to write a program to illustrate it in a manner similar to the many animated Mandelbrot illustrations. The sequence is defined by: For 1 <= n <= 3, a(n) = n; thereafter, a(2n) = a(n) + a(n+1), a(2n-1) = a(n) + a(

Re: Generating a specific list of intsgers

2018-08-25 Thread Musatov
On Saturday, August 25, 2018 at 2:39:37 PM UTC-5, Musatov wrote: > On Friday, August 24, 2018 at 10:59:07 PM UTC-5, Steven D'Aprano wrote: > > On Fri, 24 Aug 2018 14:40:00 -0700, tomusatov wrote: > > > > > I am looking for a program able to output a set of integer

Re: Generating a specific list of intsgers

2018-08-25 Thread Musatov
On Friday, August 24, 2018 at 10:59:07 PM UTC-5, Steven D'Aprano wrote: > On Fri, 24 Aug 2018 14:40:00 -0700, tomusatov wrote: > > > I am looking for a program able to output a set of integers meeting the > > following requirement: > > > > a(n) is the minimum k > 0 such that n*2^k - 3 is prime, o

Re: Generating a specific list of intsgers

2018-08-25 Thread Musatov
On Saturday, August 25, 2018 at 2:18:09 PM UTC-5, Musatov wrote: > On Saturday, August 25, 2018 at 1:52:17 PM UTC-5, Oscar Benjamin wrote: > > On Sat, 25 Aug 2018 at 18:12, wrote: > > > > > > On Saturday, August 25, 2018 at 9:46:21 AM UTC-5, Richard Damon wrote:

Re: Generating a specific list of intsgers

2018-08-25 Thread Musatov
On Saturday, August 25, 2018 at 1:52:17 PM UTC-5, Oscar Benjamin wrote: > On Sat, 25 Aug 2018 at 18:12, wrote: > > > > On Saturday, August 25, 2018 at 9:46:21 AM UTC-5, Richard Damon wrote: > > > On 8/25/18 10:27 AM, Dennis Lee Bieber wrote: > > > > On Sat, 25 Aug 2018 03:56:28 + (UTC), Steven

Re: Generating a specific list of integers

2018-08-25 Thread Musatov
On Saturday, August 25, 2018 at 12:07:14 PM UTC-5, Musatov wrote: > On Saturday, August 25, 2018 at 9:46:21 AM UTC-5, Richard Damon wrote: > > On 8/25/18 10:27 AM, Dennis Lee Bieber wrote: > > > On Sat, 25 Aug 2018 03:56:28 + (UTC), Steven D'Aprano > &g

Re: security quirk

2013-01-30 Thread Martin Musatov
On Jan 29, 8:55 pm, RichD wrote: > I read Wall Street Journal, and occasionally check 00commentBegin 01comment 02commentEnd 03 04 (); Open

Re: ] returns []

2013-01-29 Thread marty . musatov
MUSATOV -- http://mail.python.org/mailman/listinfo/python-list

avlhqw avlhqeavlhqino ovfqalmw avlhqei avlhqeaivscunqw

2012-08-03 Thread Martin Michael Musatov
Thanks to technology, a memorandum of understanding (thanks from Tel Aviva / s, F `u / n (I [I TO rotate HM), and try to think, nature is" E | .. (no offense to kiloton preparation. .. has C, E (Visor / s Chest on Tuesday Kin \ 2 I "auto. Hi Lasso, Wilson vest / Na` martin / NH MW `. brought / \ n

Re: AP -- MeAmI.org Paces Google

2009-07-10 Thread Musatov
Martin Musatov wrote: David Bernier wrote: > scribe...@yahoo.com wrote: > [...] > > > community. But perhaps he is trying to see things a bit differently > > and is just not getting the feedback he needs, so he is throwing > > tantrums apparently across USENET. >

Re: AP -- MeAmI.org Paces Google

2009-07-10 Thread Musatov
François Grondin wrote: > "David Bernier" a �crit dans le message de news: > h36ki102...@news5.newsguy.com... > > Musatov wrote: > >> On Jul 9, 7:54 pm, David Bernier wrote: > >>> Musatov wrote: > >>>> Los Angeles (AP) --MeAmI.org

Re: AP -- MeAmI.org Paces Google

2009-07-10 Thread Musatov
ctively human characteristics (see anthropomorphism). The axis of reason - equinox, mass, and time - the orbits of ...Et a basso profundo hashi-hashi-brek-a-time todo ka tiempo. > Vozacka dozvola macarana lambada ... (&⋯&@⋮&⋱&⋮@&⋯&)) P. -- Musatov http://MeAmI.org ... -- http://mail.python.org/mailman/listinfo/python-list

Re: AP -- MeAmI.org Paces Google

2009-07-09 Thread Musatov
On Jul 9, 7:54 pm, David Bernier wrote: > Musatov wrote: > > Los Angeles (AP) --MeAmI.org now has users in 50 countries following > > its adopted use in Pakistan.  The search engine has grown in > > popularity 10,000 fold following its Beta test launch three months a

Re: AP -- MeAmI.org Paces Google

2009-07-09 Thread Martin Musatov
Thank you. Martin Musatov 2009/7/9 Friðrik Már Jónsson > I'll be the first to admit it. The point of writing a fake story by > Associated Press and publishing it on a programming mailing list is totally > beyond me. > > Confoundedly yours, > Friðrik Már -- http://

AP -- MeAmI.org Paces Google

2009-07-09 Thread Musatov
it is based. Controversy arose after MeAmI.org search code allowed users to search other users Google results with no advertising. "It is truly an innovative thing we are doing," said Founder and CEO, Martin Musatov. "Letting users search the results of other Google users immediate