Open in app

Sign In

Write

Sign In

noah
noah

235 Followers

Home

About

Mar 15

GPT-4 Data Pipelines: Transform JSON to SQL Schema Instantly

TL;DR — Turn complex JSON blobs into SQL schema or SQL schema updates effortlessly with GPT-4. Picture this: you’re working on a project or at your job, tasked with running an hourly job using Airflow or a simple cronjob to move data from a JSON API into SQL tables. …

Data Engineering

4 min read

GPT-4 Data Pipelines: Transform JSON to SQL Schema Instantly
GPT-4 Data Pipelines: Transform JSON to SQL Schema Instantly
Data Engineering

4 min read


Feb 16, 2022

Use Docker for Local Databases

TL; DR; Use docker for running databases on your local machine. See examples below: #!/bin/bash # Redis docker run -d \ --name dev-redis\ -v ${HOME}/redis-data/:/data \ -p 6379:6379 \ redis # Postgres docker run -d \ --name dev-postgres \ -e POSTGRES_PASSWORD=postgres\ -v ${HOME}/postgres-data/:/var/lib/postgresql/data \ -p 5432:5432 \ postgres # MySQL docker run -d…

3 min read

Use Docker for Local Databases
Use Docker for Local Databases

3 min read


Feb 5, 2022

Automating Google Drive Uploads With Google Drive API & cURL

(Note this works for shared folders as well!) TL;DR; Use the gist located here, to generate an OAuth 2.0 access token for making http requests to the Google Drive API, then upload your files using cURL: #!/bin/bash ### Note -- $folder_id, $access_token, and $filename should be set curl 'https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart' \…

Google Drive Api

4 min read

Automating Google Drive Uploads With Google Drive API & cURL
Automating Google Drive Uploads With Google Drive API & cURL
Google Drive Api

4 min read


Jul 20, 2020

Python — Dynamic Class Attributes

2021/06/05 — Edit: I wrote this article last year, and since have learned more about how python works internally. The solution below indeed works, but is rather inefficient. The getattr, setattr, hasattr, functions are great and have a time and place to be used, but they require a lookup of…

Python

2 min read

Python — Dynamic Class Attributes
Python — Dynamic Class Attributes
Python

2 min read


May 9, 2020

Flask API Authentication with Firebase

There are a ton of brilliant features that come with Firebase, all of them can provide tremendous value to your application. However, sometimes I find that I might just want to use part of Firebase instead of the whole thing to provide more flexibility to my application. …

Flask

8 min read

Flask API Authentication with Firebase
Flask API Authentication with Firebase
Flask

8 min read


Aug 4, 2018

How to Protect Firebase Http Cloud Functions

When you create a Http Cloud Function using Firebase, you are creating a real url that anyone can put into their browser, postman, etc. and run a request. This is very inconvenient because every time that url is hit with a request your function is going to run. There is…

Nodejs

4 min read

How to Protect Firebase Http Cloud Functions
How to Protect Firebase Http Cloud Functions
Nodejs

4 min read


Jul 18, 2018

Firebase Cloud Function Tutorial

When I first started using firebase, all was well. I could easily upload my data to the realtime database, and login users using FirebaseAuth no problem. However, as development went on, the application required more complex features such as push notifications, realtime database triggers, scheduling etc. …

JavaScript

5 min read

Firebase Cloud Function Tutorial
Firebase Cloud Function Tutorial
JavaScript

5 min read


Mar 2, 2018

Raspberry Pi Remote — Using Flask, Swift, and the GoPiGo3

After a lot of googling and researching I struggled to find any direct examples of how you could create your own iOS remote for a Raspberry Pi. While building my own version of Dexter Industries Alexabot, I noticed the simplicity of Flask and Python for running…

Raspberry Pi

5 min read

Raspberry Pi Remote — Using Flask, Swift, and the GoPiGo3
Raspberry Pi Remote — Using Flask, Swift, and the GoPiGo3
Raspberry Pi

5 min read

noah

noah

235 Followers

Programmer

Following
  • Kevin Gabeci

    Kevin Gabeci

  • Lucas Soares

    Lucas Soares

  • Jerry Keszka

    Jerry Keszka

  • ECHO

    ECHO

  • Ben Lmsc

    Ben Lmsc

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech