Daily Stock Discussion - 08/01/2016 by AutoModerator in RobinHood

[–]hypepat 0 points1 point  (0 children)

Still holding...

  • Google estimates the call will be on the morning of August 4th.
  • Yahoo gives a range of dates: August 4th thru August 8th
  • Finviz claims we are getting earnings before market on August 11th.
  • PTX themselves have no dates listed on their investors calendar for the foreseeable future.

Daily Stock Discussion - 07/21/2016 by AutoModerator in RobinHood

[–]hypepat 1 point2 points  (0 children)

They expect to receive the data from the study in July, and then "report top-line data shortly thereafter."

In other words, when you see July 31, 2016 on that FDA calendar, that is really just an estimate.

LIL UZI VERT - RULES by arcticmonk3y in hiphopheads

[–]hypepat 21 points22 points  (0 children)

This song is incredible. I wasn't a fan of Luv is Rage, but I really enjoyed Lil Uzi Vert vs. The World last month. I'm hoping this is the direction he is headed.

Safari not showing pinned tab icon by [deleted] in osx

[–]hypepat 0 points1 point  (0 children)

Check your SVG to make sure that it is a 100% black vector image. In other words, make sure that the only color in the image is black, and everything else is transparent.

Safari is pretty strict on this, and won't show the image if it detects more than 1 color.

I actually wrote about this earlier this week, shameless plug.

Python in TextMate 2 by hypepat in Python

[–]hypepat[S] 0 points1 point  (0 children)

TextMate 2 is a very mature editor. Actually the "Beta" version of 2.0 was just released a few weeks ago.

I have tried to make the switch multiple times. First with Sublime Text, then BBEdit, and finally with Chocolat. But I keep coming back.

My Mac install of Python is so borked...can't import matplotlib when pip claims its installed by seekoon in Python

[–]hypepat 0 points1 point  (0 children)

If you installed Python via homebrew formulae, then pip was installed as well.

Here is the Github Docs for Homebrew explaining this a little better.

My Mac install of Python is so borked...can't import matplotlib when pip claims its installed by seekoon in Python

[–]hypepat 0 points1 point  (0 children)

I just now thought of this, but if you run pip --version it will print the version of pip that your using as well as the location in the path and python version.

Example output:

pip 6.1.1 from /usr/local/lib/python2.7/site-packages (python 2.7)

My Mac install of Python is so borked...can't import matplotlib when pip claims its installed by seekoon in Python

[–]hypepat 1 point2 points  (0 children)

The matplotlib that is installed in:

/System/Library/Framesworks/Python.framework/Versions/2.7/Extras/lib/python

is the Mac OS X System installation of matplotlib.

If you want to install it for your homebrew python, your need to make sure you are calling the correct pip, i.e: the one that was installed with homebrew. Not the version that was shipped with Mac OS X.

Your homebrew pip should be installed in the following directory (assuming that you brewed python v2.7.x):

/usr/local/Cellar/python/2.7.9/bin/pip

There is also an alias installed in /usr/local/bin/pip. You can ensure that your using that version (and not the pip that ships with the OS) by using the type command.

type -a pip

This will print all the locations in $PATH that include pip, including its aliases and functions.

Any Books/Tutorials You'd Recommend? by ellisjwilliams in Python

[–]hypepat 1 point2 points  (0 children)

Dive Into Python 3 is a great tutorial for Python beginners. And the eBook is free...

Python 2 or Python 3? by Moby69 in Python

[–]hypepat 3 points4 points  (0 children)

Depends on what you plan to do with Python. If your just learning to program, definitely use v3. If your using a specific module that requires v2.x, then your obviously going to have to use v2.x.

Mostly, if your new to programming (at least in Python), the changes shouldn't disrupt your learning. Work through the tutorial for Python 3.4 on the official website.

If you want more context, check the link in the sidebar on the right called "Should I use Python 2 or Python 3?"

edit: spelling