Skip to content

Instantly share code, notes, and snippets.

View abshkd's full-sized avatar
:shipit:
Focusing

Abhishek Dujari abshkd

:shipit:
Focusing
View GitHub Profile
@abshkd
abshkd / settings.xml
Created March 10, 2018 13:10
proxy maven repository configuration
<!-- this file is in $USER_HOME/.m2/settings.xml, if its not there, create one -->
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<!--This sends everything else to /public -->
<id>nexus</id>
<mirrorOf>*</mirrorOf>
# coding: utf-8
# In[2]:
from base64 import b64encode
import json
@abshkd
abshkd / find_dupes.py
Last active July 29, 2019 15:52
http://www.webmastersupport.com a simple script to find duplicate files (even if they are renamed) in a given location with python.
#!/usr/bin/env python
# A simple python script to list duplicate files for a given path
# This is useful to find music, videos, pictures etc that may have different names or locations but same content.
# Usage: $python find_dupes.py <windows or unix path>
# http://www.webmastersupport.com
__author__ = 'abhishek.dujari'
import os
import sys
import hashlib
@abshkd
abshkd / containers_and_serverless.md
Last active November 12, 2019 09:01
containers and serverless projects