Skip to content

Instantly share code, notes, and snippets.

View ruddra's full-sized avatar
🛰️
Drifting through the space ...

Arnab Kumar Shil ruddra

🛰️
Drifting through the space ...
View GitHub Profile
@ruddra
ruddra / osx_bootstrap.sh
Last active July 3, 2018 13:00 — forked from codeinthehole/osx_bootstrap.sh
Script to install stuff I want on a new OSX machine
#!/usr/bin/env bash
#
# Bootstrap script for setting up a new OSX machine
#
# This should be idempotent so it can be run multiple times.
#
# Some apps don't have a cask and so still need to be installed by hand. These
# include:
#
# - Twitter (app store)
#!/usr/bin/env bash
#
# Bootstrap script for setting up a new OSX machine
#
# This should be idempotent so it can be run multiple times.
#
# Notes:
#
# - If installing full Xcode, it's better to install that first from the app
# store before running the bootstrap script. Otherwise, Homebrew can't access
import sys
from urllib.parse import urlparse
import urllib.request
import re
import json
import datetime
class ContentParser(object):
_url = None
@ruddra
ruddra / router.js
Last active October 13, 2018 08:44
Router.js
import React from 'react'
import { Switch, Route } from 'react-router-dom'
import HelloWorld from './HelloWorld'
const Route = () => (
<main>
<Switch>
<Route exact path='/hello-world/:id' component={HelloWorld}/>
<Route path='/not-found' component={NotFound}/>
</Switch>
</main>
import boto3
from django.conf import settings
session = boto3.session.Session()
s3 = session.resource(
's3',
aws_access_key_id=settings.AWS_ACCESS_KEY_ID,
aws_secret_access_key=settings.AWS_SECRET_ACCESS_KEY,
endpoint_url=settings.AWS_S3_ENDPOINT_URL
@ruddra
ruddra / setup.sh
Created October 9, 2019 17:46
Manjaro Commands So far
sudo pacman -S git
sudo pacman -S pulseaudio
sudo pacman -S libldac
sudo pacman -S pulseaudio-modules
sudo pacman -S bluez
sudo pacman -S bluez-tools
sudo pacman -S bluez-utils
sudo pacman -S pulseaudio-bluetooth
sudo pacman -S gnome-bluetooth
sudo pacman -S bluez-utils
@ruddra
ruddra / search simple
Created October 25, 2019 16:16
Simple Search hugo
<script>
const posts = {{ $p }};
const query = new URLSearchParams(window.location.search);
const searchString = query.get('q');
document.querySelector('.search-content').innerHTML = searchString;
const $target = document.querySelector('.search-items');
let matchPosts = [];
posts.map(function(p){
@ruddra
ruddra / str_to_epoch_converter.py
Last active December 11, 2019 12:16
String to Epoch using Python
import datetime
def convert_to_epoch(date_string, format="%Y-%m-%dT%H:%M:%SZ"):
dt = datetime.datetime.strptime(date_string, format)
return int(str(dt.timestamp())[:-2])
@ruddra
ruddra / Salary Negociation techniques.txt
Last active March 2, 2022 13:12
Salary Negociation techniques
Pre Interview:
1. Ask to recruiter about their salary range.
2. If it does not match, then let them know about your range.
Durning Interview:
1. Do not share salary expectation other than HR.
2. Dodge the the question.
Before Offer:
@ruddra
ruddra / pymysql installation macos.txt
Last active March 2, 2022 13:13
pymysql installation macos
Step 0.
xcode-select --install
Step 1.
brew install openssl
Step 2.