Skip to content

Instantly share code, notes, and snippets.

@gowseshaik
gowseshaik / scripting.sh
Created August 24, 2022 09:57 — forked from nitish11/scripting.sh
Shell scripting hacks!!!!
# Version : 1.0
# Author : Nitish Bhardwaj
# Description : This Script file contains some shell script quick hacks.
#Check below links to get basics
#http://linuxconfig.org/linux-commands
#http://www.thegeekstuff.com/2010/11/50-linux-commands/
#http://www.makeuseof.com/tag/an-a-z-of-linux-40-essential-commands-you-should-know/
@gowseshaik
gowseshaik / nexus-uploader.py
Created April 20, 2022 17:07 — forked from omnisis/nexus-uploader.py
Uploads a local M2 repo to a remote Nexus Server
#!/usr/bin/env python
""""
nexus-uploader.py
Allows mirroring local M2 repositories to a remote Nexus server with a single command.
Supports:
- uploading of common classifiers (sources, javadocs) if available
- using regex include pattern for artifactIds/groupIds
- recursively processing local repo, just point to the root
@gowseshaik
gowseshaik / Deploy_Oracle.sh
Created August 10, 2021 22:53 — forked from samisalkosuo/Deploy_Oracle.sh
Oracle 12c silent installation files, including response files. Start installation executing Deploy_Oracle.sh. See also here: http://sami.salkosuo.net/silent-service/.
#!/bin/sh
#Set up Linux and oracle
echo "Deploying Oracle..."
if [[ "$1" != "" ]] ; then
DEFAULT_PWD=$1
echo "Using user specified default password"
else
DEFAULT_PWD=passW0RD
@gowseshaik
gowseshaik / clean.sh
Created July 20, 2021 21:23 — forked from Iman/clean.sh
Free up disk space on Ubuntu - clean log, cache, archive packages/apt archives, orphaned packages, old kernel and remove the trash
#!/bin/sh
#Check the Drive Space Used by Cached Files
du -sh /var/cache/apt/archives
#Clean all the log file
#for logs in `find /var/log -type f`; do > $logs; done
logs=`find /var/log -type f`
for i in $logs
@gowseshaik
gowseshaik / MicrosoftOffice2019Activate.cmd
Created May 30, 2021 06:49
Microsoft Office 2019 Activate
@echo off
title Activate Microsoft Office 2019 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2019&echo - Microsoft Office Professional Plus 2019&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo ============================================================================&ech
Complete ROS Start Guide - Windows/Mac/Linux - C++/Python
Publish Date: 02/2021
Course Link:
Course VM Download: https://drive.google.com/file/d/1gLoLCgwuvMqX1yfecyg7vo3aumWJmqT9/view?usp=sharing
Virtual Box: https://www.virtualbox.org/
Autonomous Robots: Localization
Publish Date: 07/2020
Course Link: https://www.udemy.com/course/autonomous-robots-localization/
Package Requirements: python=3.7.4 numpy=1.16.4 matploblib=3.1.0