Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: I'm really happy to be working with Python
Post: RE: I'm really happy to be working with Python

I've motorcycled a lot around DC. I used to go down to Piney Point, MD for school often, past Solomon. Fun area to ride. Phil
pcsailor Bar 13 6,356 Nov-27-2018, 01:53 AM
    Thread: Why do I have trouble creating code from scratch?
Post: RE: Why do I have trouble creating code from scrat...

That's awesome Wavic. Thanks. Overall I keep going because I'm really excited to be learning this and I have alot of natural passion for it. And that's what being alive is about, isn't it? I will u...
pcsailor News and Discussions 6 3,890 Nov-27-2018, 01:42 AM
    Thread: python 'SMTP debugging server' not starting local error
Post: python 'SMTP debugging server' not starting local ...

Hi, This should be so simple (right!?) but I am not able to get the python SMTP debugging server started. I am within my projects folder, running a virtual (venv) and have tried with Windows cmd and...
pcsailor General Coding Help 1 3,452 Nov-26-2018, 07:57 AM
    Thread: Why do I have trouble creating code from scratch?
Post: RE: Why do I have trouble creating code from scrat...

It's interesting Craig, I've thought about this alot. I've been a highly regarded chief engineer for 10 years and I've thought, "how can I be so level headed with engineering but so lost with coding?...
pcsailor News and Discussions 6 3,890 Nov-26-2018, 05:32 AM
    Thread: I'm really happy to be working with Python
Post: RE: I'm really happy to be working with Python

(Nov-26-2018, 03:23 AM)ichabod801 Wrote: (Nov-26-2018, 02:56 AM)pcsailor Wrote: Craig, where do you live? I'm in Minnesota, USA. Silver Spring MD, just outside of DC. You must be a dude named Ben ...
pcsailor Bar 13 6,356 Nov-26-2018, 03:25 AM
    Thread: Why do I have trouble creating code from scratch?
Post: Why do I have trouble creating code from scratch?

Hi, I could use some feedback. Do I have impostor syndrome or am I possibly not a 'natural' coder? Quick backstory: After a 20 year marine engineering career, in 2016 I needed a career change and at...
pcsailor News and Discussions 6 3,890 Nov-26-2018, 03:24 AM
    Thread: Finally switched to Linux Mint from OpenSuse Leap 15
Post: RE: Finally switched to Linux Mint from OpenSuse L...

I've been on Mint for a year. Set up my DellXPS to dual boot with Win10. It's quite NICE! Phil
pcsailor Bar 5 3,051 Nov-26-2018, 03:10 AM
    Thread: Python Jokes, know any...?
Post: Python Jokes, know any...?

Know any good python or programming jokes? I'll go first: 3 database SQLs walk into a NoSQL bar. A little while later they walk out because they couldn't find a table. Not python, and definite room ...
pcsailor Bar 1 2,095 Nov-26-2018, 03:09 AM
    Thread: I'm really happy to be working with Python
Post: RE: I'm really happy to be working with Python

Sunday night and I'm back at it!! I'm working through the Flask Mega Tutorial. Anyone done that? Phil (Nov-25-2018, 04:45 AM)ichabod801 Wrote: I'm retired. I am spending more time sitting around p...
pcsailor Bar 13 6,356 Nov-26-2018, 02:56 AM
    Thread: Web host company recommendations
Post: RE: Web host company recommendations

tHANKS FOR THE RECOMMENDATIONS. I'm going to try HostWithLove.com and see how it goes. I've written them and they support Python, although not so mush with tech calls. But the price and services we...
pcsailor Bar 8 4,773 Nov-26-2018, 02:55 AM
    Thread: Web host company recommendations
Post: RE: Web host company recommendations

Thanks <:
pcsailor Bar 8 4,773 Nov-25-2018, 03:54 AM
    Thread: Web host company recommendations
Post: Web host company recommendations

Hello, I'm not finding much info here on web hosting companies known for their strong support of python websites. Have I missed the discussion? My current web host is only apache/php and I'm about ...
pcsailor Bar 8 4,773 Nov-25-2018, 03:19 AM
    Thread: Where is the error with this db creation code & the 'conn' variable?
Post: RE: Where is the error with this db creation code ...

Yes, I'm using VSCode. I forgot about the debugger. I'll try it now. Thanks Larz. phil
pcsailor General Coding Help 6 3,471 Nov-11-2018, 10:25 AM
    Thread: Where is the error with this db creation code & the 'conn' variable?
Post: RE: Where is the error with this db creation code ...

No, still the same error. I am creating the db correctly. I've been deleting it and when I run the code, it's recreated. The error is with one of these two lines: FOREIGN KEY (project_id) REFERENC...
pcsailor General Coding Help 6 3,471 Nov-11-2018, 10:18 AM
    Thread: CWD (Current working directory)
Post: RE: CWD (Current working directory)

Hi Larz, This did the trick, thank you. I'm not exactly sure why though. I need to read up on the OS module docs, which I've not gone into in depth. Thanks again. Phil
pcsailor General Coding Help 5 4,671 Nov-11-2018, 09:56 AM
    Thread: Where is the error with this db creation code & the 'conn' variable?
Post: RE: Where is the error with this db creation code ...

Hi Larz, Thanks for the time with your answer, again ;> I made the changes and I'm still getting that same error: 2.6.0 2.6.0 Error: Can not create the database connectionHere is my updated code:...
pcsailor General Coding Help 6 3,471 Nov-11-2018, 09:47 AM
    Thread: Where is the error with this db creation code & the 'conn' variable?
Post: Where is the error with this db creation code & th...

Hello, I'm following the SQLite tutorial to create a database and tables and I'm pulling my hair out on this error. I don't see it. My linter is showing the 'conn' variable as the error, which mean...
pcsailor General Coding Help 6 3,471 Nov-11-2018, 09:15 AM
    Thread: Print data in rows and columns
Post: RE: Print data in rows and columns

try pprint import pprint pprint = prettyprinter.pprint pprint(print what you want)https://docs.python.org/2/library/pprint.html
pcsailor General Coding Help 5 4,396 Nov-09-2018, 06:29 AM
    Thread: CWD (Current working directory)
Post: RE: CWD (Current working directory)

os.chdir(os.path.dirname(__file__))results in the follinging error: [WinError 123] The filename, directory name, or volume label syntax is incorrect: ''the file name is 'page_00_index.py' The director...
pcsailor General Coding Help 5 4,671 Nov-09-2018, 06:19 AM
    Thread: CWD (Current working directory)
Post: CWD (Current working directory)

Hi, At the moment a project I am working on requires me to manually go into the first script and change the CWD to whatever the directory is of the current machine I am running the script on. Fine f...
pcsailor General Coding Help 5 4,671 Nov-09-2018, 01:33 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020