Skip to content

Instantly share code, notes, and snippets.

View sithumonline's full-sized avatar
🏠
Working from home

Sithum Bopitiya sithumonline

🏠
Working from home
View GitHub Profile
@sithumonline
sithumonline / status
Created December 29, 2018 23:55
/var/lib/dpkg/status kali 18-12-30
This file has been truncated, but you can view the full file.
Package: 0trace
Status: install ok installed
Priority: optional
Section: net
Installed-Size: 43
Maintainer: Kali Developers <[email protected]>
Architecture: amd64
Version: 0.01-3kali1
Depends: libc6 (>= 2.7), tcpdump
Description: A traceroute tool that can run within an existing TCP connection.
@sithumonline
sithumonline / .bashrc
Last active January 17, 2020 23:20
My .bashrc config
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@sithumonline
sithumonline / debian.list
Created March 9, 2019 00:43
My sources lists backup
#netselect-apt
deb http://mirror.0x.sg/debian stable main contrib non-free⏎
@sithumonline
sithumonline / config.py
Last active March 11, 2019 23:17
My qtile config ...
# -*- coding: utf-8 -*-
# _______ _ _______ _
# |\ /|( ____ \ ( ( /|( ___ )( ( /|
# ( \ / )| ( \/ | \ ( || ( ) || \ ( |
# \ (_) / | (__ _____ | \ | || | | || \ | |
# ) _ ( | __)(_____)| (\ \) || | | || (\ \) |
# / ( ) \ | ( | | \ || | | || | \ |
# ( / \ )| (____/\ | ) \ || (___) || ) \ |
# |/ \|(_______/ |/ )_)(_______)|/ )_)
#
@sithumonline
sithumonline / antix.list
Created March 25, 2019 19:27
My MX Linux sources lists backup
# Use with Debian Stable/stretch repositories. Set as default for antiX-17. Note new repos
#deb http://iso.mxrepo.com/antix/stretch stretch main
deb http://mirror.0x.sg/mx-workspace/antix/stretch stretch main
#deb-src http://iso.mxrepo.com/antix/stretch stretch main
gpg --keyserver keyserver.ubuntu.com --recv-key 8771ADB0816950D8 && gpg -a --export 8771ADB0816950D8 | sudo apt-key add -
@sithumonline
sithumonline / cut-out.md
Last active March 30, 2020 03:07
x8086

x8086

/*
Guide from xe-non to P-Use
*/
#include <WiFi.h>
#include <HTTPClient.h>
const char *ssid = "REPLACE_WITH_YOUR_SSID";
const char *password = "REPLACE_WITH_YOUR_PASSWORD";
import React, { useState, useEffect } from 'react'
import axios from 'axios'
// @material-ui/core components
import { makeStyles } from '@material-ui/core/styles'
import authHeader from '../assets/jss/services/auth-header'
//import Grid from '@material-ui/core/Grid'
// @material-ui/icons
// core components
import CardComponent from './card.component'