There's been a bit of drama over at the Classic ASP VBScript OAuth board regarding twitter's recent API URL changes. All is well now as the project has been updated and a new example project zip uploaded.
Essentially, it boils down to some Constant URL changes in one of the files. You can read more about it and download the latest version at the Classic ASP VBScript OAuth site.
Notes-to-self and other scattered ramblings about writing code and drinking lots of coffee.
Showing posts with label engineering. Show all posts
Showing posts with label engineering. Show all posts
Saturday, November 03, 2012
Tuesday, April 10, 2012
Delete all pyc files
Scenario: You've just pushed a slew of compiled python files
Solution:
1. Terminal into your project directory
2. Enter:
3. Add a .gitignore file to the root of your project with
4. Re-push the project
Solution:
1. Terminal into your project directory
2. Enter:
'find . -type f -name "*.pyc" -delete;'
(without the quotes)3. Add a .gitignore file to the root of your project with
'*.pyc'
as its content4. Re-push the project
Tuesday, May 18, 2010
REFACTORING: A day in the life
I put this video up months ago and just realized I never blogged about it! How'd that happen!? If you're an engineer, this butting-my-head-up-against-the-wall moment is for you.
So, without further ado... I bring to you... "Refactoring: A day in the life." [dat-do-do]
P.S. Turn up the volume. [Really. Turn it up.]
So, without further ado... I bring to you... "Refactoring: A day in the life." [dat-do-do]
P.S. Turn up the volume. [Really. Turn it up.]
Subscribe to:
Posts (Atom)