Add static IPs on raspbian

Share

Most of the times you need raspberry pi remote access over static IP. Here is quick note on how to add static IP on raspbian OS. Edit /etc/dhcpcd.conf as sudo and add following lines to add static IPs on ethernet and wifi interfaces of raspberry pi. Reboot system and you can now access raspberry on […]

PySpark on python3 and Debian

Share

Install openjdk 8 To install openjdk 8 on debian 10, follow steps mentioned at https://linuxize.com/post/install-java-on-debian-10/pyspark does not works well with newer versions of Java, so stick with openjdk or oracle java 8. Install PySpark Next install pyspark using python pip, I prefer python3 so installation goes with pip3 PySpark brings along required hadoop components Basic […]

Write your first REST API using Python Flask

Share

Since years programming concepts have been evolving with new ideas and improvements. Idea of API, Application Programming Interface, came out to build integration between applications/software/platforms. It has simplified integration between totally different applications and platforms. In early days (even now), APIs were in form of client APIs. Software developers/organizations offer client software component which is […]