Skip to content

Instantly share code, notes, and snippets.

View ninadpchaudhari's full-sized avatar
:shipit:

Ninad P.Chaudhari ninadpchaudhari

:shipit:
View GitHub Profile
@ninadpchaudhari
ninadpchaudhari / 98-mylog
Last active March 28, 2024 19:18 — forked from navhaxs/99-keepwanalive
openwrt wan auto reconnect hotplug script
#!/bin/sh
#File for my debugging purposes
echo $ACTION >> /tmp/mylog
echo $INTERFACE >> /tmp/mylog
echo "" >> /tmp/mylog
@ninadpchaudhari
ninadpchaudhari / gist:630dadb3a70f1bdd5fc346e886b534f9
Last active March 20, 2024 06:13
Deploying Spring boot apps
@ninadpchaudhari
ninadpchaudhari / parser.py
Last active February 4, 2024 10:13 — forked from hreeder/parser.py
Forked : Python nginx Log Parser <<Modified>> : Parsed & normalized the datetime string to native python objects
#!/usr/bin/env python
import gzip
import os
import sys
import re
from datetime import datetime
import pytz
tz = pytz.timezone('UTC')
@ninadpchaudhari
ninadpchaudhari / intro-to-aws-deploy.md
Last active November 27, 2023 16:48
Lab - Introduction to AWS Deploy.

Objectives

  • Have Fun!!!
  • Understand and discussion the deploy phase of an application.
  • Introduction to cloud computing and self hosting.
  • Stepping stone towards DevOps and Containerization.
  • Stepping stone towards utilizing existing APIs.
  • Reading and understanding Documentation; Extracting relevant information and potentially transferring concepts to other apps / cloud providers.
  • Slides

Deliverables:

@ninadpchaudhari
ninadpchaudhari / adarel-nice-reads.md
Last active November 8, 2022 03:24
AdaRel - Further Reading
  1. A. Amin, L. Grunske, and A. Colman, “An approach to software reliability prediction based on time series modeling,” Journal of Systems and Software, vol. 86, no. 7, pp. 1923–1932, Jul. 2013, doi: 10.1016/j.jss.2013.03.045.

  2. B. Bruegge and A. H. Dutoit, Object-oriented software engineering: using UML, patterns, and Java, 3rd ed. Boston: Prentice Hall, 2010.

  3. https://ece.uwaterloo.ca/~agurfink/stqam.w20/assets/pdf/W01P2-FaultErrorFailure.pdf

  4. T. Chai and R. R. Draxler, “Root mean square error (RMSE) or mean absolute error (MAE)? – Arguments against avoiding RMSE in the literature,” Geoscientific Model Development, vol. 7, no. 3, pp. 1247–1250, Jun. 2014, doi: 10.5194/gmd-7-1247-2014.

  5. J. Ledoux, “Software Reliability Modeling,” p. 47, 2013.

@ninadpchaudhari
ninadpchaudhari / Selenium.side
Created November 30, 2021 22:49
Move liked videos from one Google Account to another, using YT Music
{
"id": "d3bd1779-ae2d-4280-9097-59d19a749eb7",
"version": "2.0",
"name": "YT",
"url": "https://music.youtube.com",
"tests": [{
"id": "7068f654-77ec-4f6e-bfd6-03c4d5a20a1c",
"name": "1",
"commands": [{
"id": "995220d1-7b08-461f-8fa8-e1b8c3e81cb1",
Guests as they wait for the wedding to begin :
- The Best of My Love By Eagles
- Dave Matthews Band - #34 https://www.youtube.com/watch?v=3GLdx2sq3vA
- Musiq Soulchild - So Beautiful https://www.youtube.com/watch?v=LgPpowVNEfE
-
for wedding ceremiony done :
- Stevie Wonder - Signed Sealed Delivered https://www.youtube.com/watch?v=kgT9QJ2htMc
- "Beautiful Day," by U2 https://www.youtube.com/watch?v=co6WMzDOh1o
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Create Basic Client & Server (hello world) apps & push to Github, EC2 and S3 bucket exists- 20
HTML for profile page with bootstrap present & works well - 15
Server app can respond with custom response & is used in React. - 10
Server app can save and retrive data in the request from DB - 10
Server can do Auth - Static IF conditions - 5
React can use conditinal rendering to show Admin things - 5
Application is well constructed Profile & Nav & Admin Component -- 10
S3 bucket integration - 10
Application deployed - 10
@ninadpchaudhari
ninadpchaudhari / fix-wordpress-permissions.sh
Last active February 5, 2020 06:39 — forked from Adirael/fix-wordpress-permissions.sh
Fix wordpress file permissions
#!/bin/bash
#
# This script configures WordPress file permissions based on recommendations
# from http://codex.wordpress.org/Hardening_WordPress#File_permissions
#
# Author: Michael Conigliaro <mike [at] conigliaro [dot] org>
# Edited: Ninad Chaudhari <nchaudhari@albany.edu>
# https://gist.github.com/ninadpchaudhari/5c32d596670e5253a15c6deb69642698
if [[ $# -eq 0 ]] ; then