Published in Geek Culture·13 hours agoUsing Postman Pre-request Script to Automatically Set TokenIn this short post, we will learn how to use Postman’s pre-request script to fetch access token from an API and set it as an environment variable so that it can be used while making the actual API call. Assume a scenario where you need to fetch users from the…Postman3 min read
Published in Geek Culture·6 days agoPolling API in React Native using Redux SagasReact Saga is a side effect manager for Redux. In this post, I will walk you through the process of polling for API response periodically. In some scenarios, you might need to call an API every few seconds/minutes. You can use React Sagas to dispatch an action that can call…Redux Saga3 min read
Published in Geek Culture·Apr 1Display CSV Data in a React Native Table With PaginationRecently, while working on a React Native mobile project, there was a requirement to display CSV data in a table component. In this post, I will walk you through the process of fetching CSV data from a remote URL and displaying it in a React Native table component with pagination…React Native3 min read
Published in Geek Culture·Mar 21How to Automate AWS CDK Deployments using Github ActionsAWS CDK lets you manage infrastructure as code using object-oriented programming languages. In this post, I will walk you through the process of automating AWS CDK deployment using Github Actions. In the past, I have published a few posts on how to use AWS CDK for catering to different real-world…Aws Cdk5 min read
Published in Geek Culture·Mar 12How to Dockerize a Python ScriptIn this short post, I will walk you through the process of Dockerizing a simple python script. There might be scenarios where you might want to execute a Python script in a docker container. As an example we will define a simple python script that makes an API call and…Docker2 min read
Published in Geek Culture·Mar 5How to Upload File to S3 using Python AWS LambdaIn this short post, I will show you how to upload file to AWS S3 using AWS Lambda. We will use Python’s boto3 library to upload the file to the bucket. Once the file is uploaded to S3, we will generate a pre-signed GET URL and return it to the…AWS4 min read
Published in Geek Culture·Feb 13Configure AWS Credentials in Circle CIIn this short post, I will walk you through the steps of configuring AWS Credentials in Circle CI. Prerequisite You first need to generate access key and secret using your AWS account if you haven’t done that already. To do so follow these links: Creating an IAM user in your AWS…Circleci Orbs2 min read
Published in Geek Culture·Jan 24Top Tech Blogs that Pay You To WriteIf you are a tech blogger and looking for ways to earn money for writing then this post is for you. In this post, I will list down the top tech blogs that pay quite well if you get selected to write for them. Code Tuts+ Apply here 100$ for quick tips…Tech Blog2 min read
Published in Agile Insider·Jan 23Top 10 Things That Developers expect from Product ManagersThe product-development relationship is quite important in the world of software development. In this post, we will reflect shine on some of the important traits that a developer expects from a product manager. — Here are some of the top 10 expectations of a developer from a product manager to create a healthy product and relationship amongst them. 1. Knows the outcome of the feature/product Having a wholesome knowledge of what and why to build is really essential for a product manager. If they are not clear with what the expectations…Product Management4 min read
Published in Geek Culture·Dec 26, 2021How to Upload File to Google Drive from Linux Command LineUsing a command line tool could be useful while uploading large files to Google Drive. In this short post, I will walk you through the steps of using gdrive Linux command line utility to upload files to Google Drive. We will be using an third party open source tool called…Google Drive2 min read