Skip to content

Instantly share code, notes, and snippets.

View arunsah's full-sized avatar

Arun arunsah

  • India
View GitHub Profile
@mbostock
mbostock / .block
Last active October 9, 2024 15:14
Collapsible Tree
license: gpl-3.0
redirect: https://observablehq.com/@d3/d3-collapsible-tree
@BrandonSmith
BrandonSmith / AndroidManifest.xml
Last active July 19, 2023 19:11
Quick example of how to schedule a notification in the future using AlarmManager
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cards.notification">
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active July 13, 2025 07:55
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@nakato
nakato / haproxy.cfg
Created January 7, 2015 03:12
A quickly throw together haproxy config for RabbitMQ
global
log 127.0.0.1 local2
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
maxconn 4000
user haproxy
group haproxy
daemon
stats socket /var/lib/haproxy/stats
tune.bufsize 128000
@adamfeuer
adamfeuer / D3JS Tree Editor.md
Last active May 8, 2025 05:19
d3js tree editor with node create, delete, and rename
We couldn’t find that file to show.
@e9t
e9t / data.json
Last active February 15, 2024 01:19
Drawing a neural network
{
"nodes": [
{"label": "i0", "layer": 1},
{"label": "i1", "layer": 1},
{"label": "h0", "layer": 2},
{"label": "i2", "layer": 1},
{"label": "h1", "layer": 2},
{"label": "h2", "layer": 2},
{"label": "h3", "layer": 2},
{"label": "o0", "layer": 3}
@erikroyall
erikroyall / textbooks.md
Last active May 13, 2025 10:03
Alex Stef's list of freely-available mathematics textbooks

Textbooks in Mathematics

A list of links to useful mathematical textbooks available for free on the Internet. They are all legal and maintained by their authors or by the legitimate publisher.

All the documents are in English. They are in a printable format - Postscript or Adobe Portable Document Format. You are free to download, read and print them. Here are some links to other sites offering lists of free mathematical textbooks.

For any comments, please, contact me: [email protected]

@ognis1205
ognis1205 / walkers-algorithm-with-canvas.js.html
Last active October 27, 2020 01:00
Javascript Implementation of Walkers Algorithm
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=Shift_JIS">
<title>TEST</title>
</head>
<body>
<div id="example-input">
<div>
<div>
<ul>
import numpy as np
from sklearn.datasets import make_moons
from sklearn.cross_validation import train_test_split
n_feature = 2
n_class = 2
def make_network(n_hidden=100):