|
You are here |
abstractexpr.com | ||
| | | | |
atomicbird.com
|
|
| | | | | In my last post I went over the components of the bird house camera I set up this year to get a better look at the local black-capped chickadees. Today Ill talk about the software that makes it work. Initial Setup Being relatively new to Raspberry Pi, I started off with a full install of Raspbian Deskop. Its more than I need, since I wont have anything like a desktop setup, but with a 64GB SD card I wasnt concerned about the space. | |
| | | | |
blog.miguelgrinberg.com
|
|
| | | | | miguelgrinberg.com | |
| | | | |
davidbieber.com
|
|
| | | | | You can log into a Twitter app with OAuth using Twython. First, make sure you have twython pip installed (pip install twython). Then, get the APP_KEY and APP_SECRET from the developer. This is labeled "API Key and Secret" on the app page at https://developer.twitter.com/en/portal/apps/. Next, run the following Python code: import twython client = twython.Twython(APP_KEY, APP_SECRET) auth = client.get_authentication_tokens(callback_url='oob') oauth_token = auth['oauth_token'] oauth_token_secret = auth['oa... | |
| | | | |
luten.dev
|
|
| | | Ive been out of the .NET loop for a very long time. I would never have thought that it was so easy to get a .NET project up and running on Linux. But, I guess a decade of embracing Open Source at Microsoft changes things. Here are the steps I took to get an OpenGL window up and running on Ubuntu using .NET Core, VSCode, and OpenTK. | ||