Archive | Python
20
Dec

Thoughts About REST and APIs

I’ve been thinking a lot lately about REST, especially in the context of API design. So I wanted to write this up to just collect my thoughts, and to share some things I’ve learned about working with HTTP and Django. The Different HTTP Methods I think we usually just think about GET and POST when [...]

Continue Reading →
16
Nov

Restaurant Apps with The Table Tap

Cyber Sprocket Labs started a fun and exciting relationship that is the perfect cross section of two of our favorite things, programming and beer.    While we’ve worked on many exciting projects over the years, this is definitely in the top two.  None of our esteemed programmers ever thought they’d be working on an application that [...]

Continue Reading →
20
Jan

Python: Importing Packages

Importing and working with modules is a little different in Python than some other languages you may be familiar with, and since we are using it for some 3DChat technology—and hopefully in the future by using Django for more web applications—I would like to explain some of those differences. You import a module in Python [...]

Continue Reading →