Author: thebuzz

Name of Innovation

DataStax Astra – Setup Free Tier Account and Evaluate Performance using NoSQLBench on Linux

In this post, we will describe how you can setup Data Stax Astra account, how to use it, various features on the Astra Web Console, and how we can measure the performance of the Astra account which we created. We will use a very powerful tool named nosql bench (nb /nosql Performance Benchmarks). Astra uses…
Read more


September 3, 2020 1

Good Morning!

  Cloud Management We deal with AWS, GCP, DigitalOcean Spinning the new boxes (ec2, droplets etc,c compute engines) from console and from command line Taking off the boxes for the maintenance  and delete them if not being utilized Managing IAM role


August 12, 2020 0

WOCLO – WOIR Cloud

Woclo provides access to numerous tutorials and seamless workspace to run your projects and services. We render bundled cloud solution using the latest technologies. It is well known how tedious it is for students to create a complete setup with multiple technologies installed and make them all work conjointly, let alone dedicate a computing resource…
Read more


July 6, 2020 0

Top Notch Unix Dev Ops Resources

Get the best-in-class resources in Unix Dev Ops domain Our resources are deployed in premium companies like Oracle and involved in high-end engineering work Work includes Cloud Migration, VM Management, Build Automation, Deployment, Monitoring, etc. Best ROI if you work with us No Commitment unless you get what you were looking for, try out the working model with…
Read more


October 12, 2019 0

Django – extended URLs

mkdir 20221217 cd 20221217 conda activate myenv django-admin startproject extendedurls cd extendedurls python manage.py startapp blogs python manage.py startapp mycontacts Register both the apps – INSTALLED_APPS = [ ‘django.contrib.admin’, ‘django.contrib.auth’, ‘django.contrib.contenttypes’, ‘django.contrib.sessions’, ‘django.contrib.messages’, ‘django.contrib.staticfiles’, ‘blogs’, ‘mycontacts’, ] python manage.py migrate python manage.py createsuperuser Please copy/paste following in extendedurls/urls.py from django.contrib import admin from django.urls import path from…
Read more


September 25, 2019 0

Django – Extending templates

wordcount/wcount/templates/wcount/base.html <html>     <head>         <title>WOIR Software</title>         <link rel=”stylesheet” href=”//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css”>         <link rel=”stylesheet” href=”//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css”>         <link href=’//fonts.googleapis.com/css?family=Lobster&subset=latin,latin-ext’ rel=’stylesheet’ type=’text/css’>     </head> <body>     <div class=”page-header”>         <h1><a href=”/”>Our Page</a></h1>     </div>     <div class=”content…
Read more


September 25, 2019 0

DJango Installation Steps

Windows Installation Process Linux/Ubuntu Installation Process Install Conda   Site / conda version  — https://www.anaconda.com/distribution/ If Anacando is already installed then remove and install new one Download the Python 3.9 version Open Anaconda Powershell Prompt        Type the below commands in Anaconda Powershell Prompt conda update -n base -c defaults conda conda create -n myenv python=3.9…
Read more


September 24, 2019 0

Internship + Training Program – 2019-2020

  It is a real project and real experience. It is a training + internship program. It includes training during the work. Duration of the training will be around 3 weeks – it is a paid training.  During the training, we will cover Python + Hadoop. Duration of the internship is 4 weeks which can be extended…
Read more


May 26, 2019 0

Python Examples

x = “global” def foo(): print(“x inside :”, x) foo() print(“x outside:”, x) ############## x = “global” def foo(): x = x * 2 print(x) foo() ############# def foo(): y = “local” foo() print(y) ############### def foo(): y = “local” print(y) foo() ################# x = “global” def foo(): global x y = “local” x =…
Read more


February 1, 2019 0

Postgres ( Basic Introduction )

Password abcd1234 and user is postgres, port 5432 Create Database – createdb mydb   # it may not work createdb mydb -U postgres mydb Drop Database – dropdb -U postgres mydb Connect to DB from command line – createdb mydb -U postgres mydb psql.exe -U postgres mydb Basic commands – mydb=# select version(); Adding users postgres=#…
Read more


January 17, 2019 0