Re: conda/anaconda and pip3 (pip)

2018-12-08 Thread Monte Milanuk
Did you find any solution(s)? -- https://mail.python.org/mailman/listinfo/python-list

Re: Simple graphic library for beginners

2018-01-12 Thread Monte Milanuk
On 2018-01-11 12:37, Oivvio Polite wrote: On ons, jan 10, 2018 at 01:40:28 +0100, Jan Erik Moström wrote: I'm looking for a really easy to use graphic library. The target users are teachers who have never programmed before and is taking a first (and possible last) programming course. I do a t

Re: how to setup for localhost:8000

2016-04-17 Thread Monte Milanuk
he local host at all, or with letting your browser access it, if it is running. What I get in the console looks like this: Windows PowerShell Copyright (C) 2015 Microsoft Corporation. All rights reserved. PS C:\Users\Monte Milanuk> python -m http.server Serving HTTP on 0.0.0.0 port 8000 ..

Re: OT: usenet reader software

2014-07-22 Thread Monte Milanuk
On 2014-07-22, Grant Edwards wrote: > On 2014-07-22, Monte Milanuk wrote: >> On 2014-07-22, ismeal shanshi wrote: >> [drugs for sale] > >> Aaaannnd here we have a good example of why it would be really nice >> to be able to filter/score based on the message *bod

Re: OT: usenet reader software

2014-07-22 Thread Monte Milanuk
On 2014-07-22, ismeal shanshi wrote: > Herion,,Actavis promethazine codeine 16oz and 32oz available Ketamine > Oxycontine Hydrocodone xanax and medicated marijuana US- free shipping and > other related products for sell at competitive prices.We do world wide > shipping to any clear > > address

Re: Removing xml element and strip extra space

2014-07-22 Thread Monte Milanuk
On 2014-07-22, varun bhatnagar wrote: > I just want to scrape out > But the way I have written my xsl file it is removing it but it is also > leaving a blank space there. I want my output to look like this: This is the part where a certain amount of example code showing what you're doing would p

Re: Removing xml element and strip extra space

2014-07-22 Thread Monte Milanuk
On 2014-07-22, varun bhatnagar wrote: > I want to strip the space between ** and ** > Can anyone suggest a way out to do that? Look at str.rstrip() - by default it removes trailing whitespace including carriage returns. -- https://mail.python.org/mailman/listinfo/python-list

Re: Network/multi-user program

2014-07-22 Thread Monte Milanuk
On 2014-07-22, Lele Gaifax wrote: > On the other hand, it has good and extensive examples, so the learning > curve is not so steep (I'm clearly biased here, but I introduced several > young developers to that environment and that's what they said too). Any experience with angular js? Browsing th

Re: Network/multi-user program

2014-07-21 Thread Monte Milanuk
On 2014-07-21, Lele Gaifax wrote: > Monte Milanuk writes: >> How hard was it to migrate from a desktop app to what you have now? > > Well, basically I rewrote everything, there's nothing in common. The > original application was written in Delphi, using Paradox tables,

Re: Network/multi-user program

2014-07-21 Thread Monte Milanuk
On 2014-07-21, Lele Gaifax wrote: > I manage small events with a single notebook and a low cost printer, > without network connection, while major events with a network connection > may be managed online. > > You can try it out at http://sol3.arstecnica.it/, using guest/guest as > username/passwo

Re: Network/multi-user program

2014-07-21 Thread Monte Milanuk
On 2014-07-21, Chris Angelico wrote: > On Tue, Jul 22, 2014 at 2:07 AM, Monte Milanuk wrote: >> So I guess I'm asking for advice or simplified examples of how to >> go about connecting a client desktop app to a parent/master desktop app, >> so I can get some idea of how

Network/multi-user program

2014-07-21 Thread Monte Milanuk
So... this is a fairly general / hypothetical question, and I'm more looking for direction than specifics - though it may be useful as well. I need to create a particular application for administering a sporting event. 95% (and this may be understating the case) of the 'users' would likely be si

Re: PyWart(2.7.8) IDLE is more buggy than "Joe's apartment"!

2014-07-21 Thread Monte Milanuk
On 2014-07-21, Shiyao Ma wrote: > But really interested in the invalid@invalid.invalid mailing address. > And,,, obviously, I cannot send to invalid@invalid.invalid, so > > How does you(he) make this? Some usenet clients, such as slrn which it looks like Grant is using according to the message he

Re: OT: usenet reader software

2014-07-21 Thread Monte Milanuk
On 2014-07-21, Paul Rudin wrote: > Sturla Molden writes: > >> wrote: >> >>> That doesn't address the problem at all! :-) You still need a news >>> reader. >> >> The problem was that Thunderbird does not support killfiles when used as a >> newsreader. Leafnode adds filtering capabilities which T

Re: OT: usenet reader software

2014-07-20 Thread Monte Milanuk
On 2014-07-20, Chris Angelico wrote: > Ctrl-X in Angband, Ah-HAH! I've been trying to remember what the name was of an old CLI game that I used to play via a dialup ssh connection (using PuTTY) to a Panix.com account (they ran on NetBSD). Screen was my friend due to dropped connections, and I

Re: OT: usenet reader software

2014-07-19 Thread Monte Milanuk
On 2014-07-19, c...@isbd.net wrote: > memilanuk wrote: >> >> Guess where I'm going with this is... is there anything out there worth >> trying - on Linux - that I'm missing? >> > If slrn was a maybe then there's also tin for text mode news readers, > it's what I have always used. I don't know

Re: OT: usenet reader software

2014-07-19 Thread Monte Milanuk
On 2014-07-19, Martin S wrote: > Is there a point to still use Usenet? Last time I checked noise overwhelm > ed signal by a factor of something close to 542. Martin, Fair enough question. Seems like a lot of usenet groups have become spam-fests, and using it to d/l various binaries of questiona

Re: PyQT app accessible over network?

2013-02-22 Thread Monte Milanuk
On 02/22/2013 08:57 AM, Alec Taylor wrote: Monte: I noticed you mentioned web2py; that would be my recommendation. You also mention different features being available to different users; perfect use-case for web2py's built-in RBAC. Scalability: Go with Postgres, MySQL; or considering how much d

Re: PyQT app accessible over network?

2013-02-22 Thread Monte Milanuk
Yes, I am looking at a database-centric application. I know that the 'larger' databases such as PostgreSQL, MySQL, etc. would not have any problem handling that small amount of traffic. My concern is that using postgres or mysql for this would be akin to using a sledgehammer to swat a fly, wh

PyQT app accessible over network?

2013-02-21 Thread Monte Milanuk
Hello all, New guy here, with a kind of general question. Hopefully its not too silly... I've been working at learning python off and on now for a while, with a couple programs in mind as a goal - kind of specialized stuff that I can't seem to find a good match for already available, compet

Re: Good Python IDE

2013-01-06 Thread Monte Milanuk
Lots of good options out there... currently I'm liking spyder or eclipse a lot. -- http://mail.python.org/mailman/listinfo/python-list

Re: New to python, do I need an IDE or is vim still good enough?

2012-12-29 Thread Monte Milanuk
On 12/29/2012 11:52 AM, Roy Smith wrote: Chris Angelico wrote: [regarding Bracket matching Language-sensitive auto-indentation and automatically indents Yeah, what he said, plus syntax coloring. And keyword highlighting. And autocompletion of variable names. I'll probably get dog-piled by

Re: New to python, do I need an IDE or is vim still good enough?

2012-12-29 Thread Monte Milanuk
On 12/27/2012 12:01 PM, mogul wrote: I'm new to python, got 10-20 years perl and C experience, all gained on unix alike machines hacking happily in vi, and later on in vim. Do I really need a real IDE, as the windows guys around me say I do, or will vim, git, make and other standalone tools m

'Experimental Design' aka DoE

2012-11-16 Thread Monte Milanuk
Hello, I'm interested in refining some tests I do for a hobby of mine beyond the traditional 'one factor at a time' (OFAT) method. I have been looking at 'design of experiment' (DoE) methods and they look promising. The problem is that most of the software packages that aid in the setup and anal

Re: Looking for video/slides from PyCon 2011...

2012-05-15 Thread Monte Milanuk
On 05/13/2012 09:42 PM, Kushal Kumaran wrote: On Fri, May 11, 2012 at 5:42 AM, Monte Milanuk wrote: ...specifically the two lectures on creating GUI applications with Python + QT http://us.pycon.org/2011/schedule/presentations/207/ Various searches on the 'Net don't seem to be

Looking for video/slides from PyCon 2011...

2012-05-10 Thread Monte Milanuk
...specifically the two lectures on creating GUI applications with Python + QT http://us.pycon.org/2011/schedule/presentations/207/ Various searches on the 'Net don't seem to be turning up much... kinda curious as to why? Anyone here know? TIA, Monte -- http://mail.python.org/mailman/list

Re: Python education survey

2011-12-25 Thread Monte Milanuk
Not a teacher here, but I'm curious why Komodo Edit never seems to get any love in the IDE debates... a free version for personal/non-profit use, pro versions for those that need the extra features, seems to work fairly well but then again I'm probably not the best judge... Thanks, Monte --

Re: Ways of accessing this mailing list?

2010-12-11 Thread Monte Milanuk
On 12/11/10 3:32 PM, Martin Schoeoen wrote: On 2010-11-04, Mark Wooding wrote: John Bond writes: Hope this isn't too O/T - I was just wondering how people read/send to this mailing list, eg. normal email client, gmane, some other software or online service? Thunderbird + gmane works for me

Re: Which non SQL Database ?

2010-12-04 Thread Monte Milanuk
On 12/4/10 3:43 PM, Jorge Biquez wrote: I do not see a good reason for not using Sqlite3 BUT if for some reason would not be an option what plain schema of files would you use? Would shelve work? -- http://mail.python.org/mailman/listinfo/python-list

Re: newb

2010-07-27 Thread Monte Milanuk
On 7/27/10 4:07 AM, whitey wrote: hi all. am totally new to python and was wondering if there are any newsgroups that are there specifically for beginners. i have bought a book for $2 called "learn to program using python" by alan gauld. starting to read it but it was written in 2001. presuming t

Re: Printing forms and labels in Python

2010-06-13 Thread Monte Milanuk
On 6/13/10 11:30 AM, Joel Goldstick wrote: Use django or another web framework, and make your application a web app. With this approach you can display output to a web page, and create a print stylesheet that can be finely tuned to print. This ups your work to get involved with a web framework,

Re: Printing forms and labels in Python

2010-06-13 Thread Monte Milanuk
On 6/13/10 11:12 AM, Anssi Saari wrote: I actually looked into label printers recently. It seems that at least the cheaper models from Brother and Dymo accept a bitmap in specific dimensions and they print it pixel exactly. Very simple, in other words. But different printers need different forma

Re: Printing forms and labels in Python

2010-06-13 Thread Monte Milanuk
On 6/13/10 10:23 AM, Diez B. Roggisch wrote: However, the overall problem here is that printer APIs are very different between os and they aren't abstracted in python to some common module. They need access to GUI libraries which python doesn't expose out of the box. I know the usual response

Re: Printing forms and labels in Python

2010-06-13 Thread Monte Milanuk
On 6/13/10 8:00 AM, Joel Goldstick wrote: Why not go the other direction. Use python to do your processing, and send the results to excel. There are python modules that read and write excel files. Well... partly because Excel is not exactly cross-platform. Granted, the mass majority of peopl

Printing forms and labels in Python

2010-06-12 Thread Monte Milanuk
Hello, I'm still a relative newbie to python, so I apologize if this is covered in detail somewhere and I missed it. I have a program or two that I want to work on once I get more proficient with python and sqlite and tkinter/wxpython. One of the big 'features' of those programs I want to m

Re: Python Forum

2010-06-06 Thread Monte Milanuk
On 6/6/10 9:46 AM, Aahz wrote: but I prefer to rely on someone else's sysadmin and I really don't want to allow remote connections into my home network. To each their own... while Panix is fairly relaxed as a shell host, I prefer to not have someone else telling me what I can and can't install

Re: Python Forum

2010-06-06 Thread Monte Milanuk
On 6/5/10 10:11 PM, Aahz wrote: In article, Monte Milanuk wrote: Decent NNTP access is harder to find. Not impossible, but no longer a 'free' part of most standard ISP access any more. This seems like a good time to promote my ISP: panix.com Used to have an account with them

Re: Python Forum

2010-06-03 Thread Monte Milanuk
Adam Tauno Williams whitemice.org> writes: > > However, whether we like it or not: > > Fewer and fewer newcomers are willing, knowledgable, aware of nntp > > So? NNTP is the living dead. Time to let it go. > True. Decent NNTP access is harder to find. Not impossible, but no longer a 'free