Re: crash while using PyCharm / Python3

2016-04-02 Thread Daniel Wilcox
ity > > > > System crashed while using PyCharm / Python3. > > Booting takes forever and stuck at the purple screen with > > the Ubuntu logo and the five dots cycling. > > How to fix? > > > > Searching for this thread in a browser lead to > the code.actives

Re: crash while using PyCharm / Python3

2016-03-18 Thread Daniel Wilcox
> > Host OS:Ubuntu Desktop 14.04 LTS / Unity > > System crashed while using PyCharm / Python3. > Booting takes forever and stuck at the purple screen with > the Ubuntu logo and the five dots cycling. > How to fix? > First off your machine not booting isn't really Python related. Python may ha

Re: WP-A: A New URL Shortener

2016-03-19 Thread Daniel Wilcox
=D On Wed, Mar 16, 2016 at 11:16 AM, Rick Johnson wrote: > On Wednesday, March 16, 2016 at 7:02:16 AM UTC-5, Daniel Wilcox wrote: > > I dare say I'm with Rick on this point[...] > > Contrary to "pseudo popular belief", it's perfectly okay to > agree with

Re: retrieve key of only element in a dictionary (Python 3)

2016-03-19 Thread Daniel Wilcox
I think you're looking for something like popitem(). >>> d = {'asdf':1} >>> d.popitem()[0] 'asdf' Cheers On Fri, Mar 18, 2016 at 2:33 PM, Fillmore wrote: > > I must be missing something simple, but... > > Python 3.4.0 (default, Apr 11 2014, 13:05:11) > [GCC 4.8.2] on linux > Type "help", "cop

About PyPi: ETA from publish to searchable?

2016-03-19 Thread Daniel Wilcox
Hello! I just recently published my first package to PyPi and was wondering -- how long will it take before I actually can see it if I'm searching for it? I imagine the indexes are on some schedule but I'm chomping at the bit -- about how long is that? Thanks, -D https://pypi.python.org/pypi/vc

Re: Obfuscating Python code

2016-03-19 Thread Daniel Wilcox
If you really want to learn about obfuscating python bytecode so it can't be reverse engineered (easily) -- there are people who are doing it. Search for 'pyasm' on github as a starting point. tldr; yes people are patching .pyc files. yes you can make them a nightmare to disassemble. and yes it sl

Re: WP-A: A New URL Shortener

2016-03-19 Thread Daniel Wilcox
x27;t be injectful. > > Vinicius Mesel > > Em 16 de mar de 2016, às 1:28 AM, Daniel Wilcox > escreveu: > > I dare say I'm with Rick on this point -- keep it up, go learn stuff, put > things together and see how they break -- I think it's the best way to get

Re: WP-A: A New URL Shortener

2016-03-19 Thread Daniel Wilcox
I dare say I'm with Rick on this point -- keep it up, go learn stuff, put things together and see how they break -- I think it's the best way to get feel for how things fit together and, somewhat inevitably, fall over (when the conditions they were designed in no longer apply). *quick glance at so

Re: WP-A: A New URL Shortener

2016-03-20 Thread Daniel Wilcox
> > > +list >> >> > You will be far more welcome here if you intersperse your replies or > bottom post. Top posting is very heavily frowned upon. Thanks. noted. lol -- https://mail.python.org/mailman/listinfo/python-list

Re: crash while using PyCharm / Python3

2016-03-22 Thread Daniel Wilcox
Now as for *why* you needed to reinstall your graphics driver... did the graphics driver get updated before the crash? Or do we think something in the java runtime for PyCharm ate libglx or friends? I did find this PyCharm crash in which Java ate itself -- though didn't eat any library files (as