How to Upload a Pandas DataFrame to DynamoDB with Python

python

So you’re trying to upload a Pandas DataFrame to DynamoDB using Python? Let’s take a step back first. Why are we using DynamoDB? What is DynamoDB? What is DyanmoDB DyanmoDB is a non-relational fully managed database product offered by Amazon’s cloud computing arm AWS. So why would you go the DynamoDB route vs MySQL, Postgres, … Read more

Fix: RNGADBannerView Was Not Found in the UIManager (React Native Ads)

React Native or React post.

Happen to be getting the Invariant Violation: requireNativeComponent: “RNGADBannerView” was not found in the UIManager error? Did you use the really useful react-native-admob lib at some point, remove it, but are still getting this weird error? Maybe you’re using another lib, removed it, and are getting a similar error? I spent nearly three full days … Read more

DigitalOcean vs AWS: Which Cloud Platform Should You Choose?

Digital Ocean or AWS? Ahh, the classic question our fore fathers have been asking for millenia. Should we go the developer and pocket book friendly route with Digital Ocean or take the leap and make friends with Goliath aka AWS? At First This was a silly question for me when I first started developing. Digital … Read more

Fix: IndexError – Only Integers, Slices, Ellipsis, and Boolean Arrays Are Valid Indices

python

Soooo you got the IndexError: only integers, slices (`:`), ellipsis (`…`), numpy.newaxis (`None`) and integer or boolean arrays are valid indices error. Let’s get that annoying message fixed. My Computer Setup For those Short On Time You’re trying to access an element of a Pandas index like df.columns where df is a DataFrame by using … Read more