Skip to content

Instantly share code, notes, and snippets.

View erdincay's full-sized avatar
:electron:
analyzing the core of reality

shakur erdincay

:electron:
analyzing the core of reality
View GitHub Profile
@erdincay
erdincay / sugh.sh
Last active March 14, 2024 21:00
su GitHub (downloading all repositories from a given user)
#!/bin/bash
if [ -z "$1" ]; then
echo "waiting for the following arguments: username + max-page-number"
exit 1
else
name=$1
fi
if [ -z "$2" ]; then
We will gather all URLs next - this may take a short while. Please remain patient.
(1) 3ddesktop -> http://desk3d.sourceforge.net/download.php
(2) 3dpong -> ftp://ftp.billsgames.com/unix/x/3dpong/src/3dpong-0.5.tar.gz
(3) 855resolution -> http://perso.orange.fr/apoirier/
(4) a2png -> http://sourceforge.net/projects/a2png/files/a2png/0.1.5/a2png-0.1.5.tar.gz
(5) a2ps -> http://ftp.gnu.org/gnu/a2ps/a2ps-4.14.tar.gz
(6) a52dec -> http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz
(7) aalib -> http://sourceforge.net/projects/aa-project/files/aa-lib/1.4rc5/aalib-1.4rc5.tar.gz
(8) aamath -> http://fuse.superglue.se/aamath/aamath-0.3.tar.gz
(9) abcde -> http://abcde.googlecode.com/files/abcde-2.5.3.tar.gz
@erdincay
erdincay / convert-postman-to-insomnia.js
Created September 14, 2023 07:48 — forked from wesleyegberto/convert-postman-to-insomnia.js
Script to convert a Postman backupt to Insomnia
/**
* Script to parse a Postman backupt to Insomnia keeping the same structure.
*
* It parses:
* - Folders
* - Requests
* - Environments
*
* Notes: Insomnia doesn't accept vars with dots, if you are using you must replace yours URLs manually (see ENVIRONMENTS_EXPORTS).
*/
@erdincay
erdincay / linux_reading_list.md
Created January 16, 2023 03:09 — forked from eenblam/linux_reading_list.md
Linux Networking Reading List

Linux Networking Reading List

Currently in no particular order. Most of these are kind of ancient.

Where's all the modern documentation? So much of what I've turned up searching is other folks complaining about having few options beyond reading source code.

The OREILLY books, while dated, seem to be some of the best available. Note that these can be read with a 7-day trial. Do this! At least get through the introduction section and first chapter of each to see if it's what you're after.

https://www.netfilter.org/

@erdincay
erdincay / .bash_profile
Created September 5, 2018 18:47 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
select o.created,o.last_ddl_time
from user_objects o
where o.object_name='MY_VIEW' and o.object_type='VIEW';
@erdincay
erdincay / introrx.md
Created November 2, 2018 09:53 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@erdincay
erdincay / Install and run.txt
Created November 2, 2018 09:15 — forked from Levis92/Install and run.txt
Install gitinspector with Homebrew (Mac)
Gitinspector (Mac)
https://github.com/ejwa/gitinspector
Installation:
1. Install Homebrew (http://brew.sh)
2. Install with brew: brew install hjorthjort/hjort/gitinspector
3. Edit configuration file in home folder (rc):
@erdincay
erdincay / countries-for-mssql.sql
Last active August 29, 2015 14:26
Sql dump of all the Countries, Country Codes, Phone codes.
/* ################################################################################
# AUTHOR : Markus Kofler - http://www.kofler-it.com
# NAME : countries-for-mssql.sql
# DATE : 2015-06-21
# Version : 1.0
# COMMENT : This script creates a table within your MS-SQL-Server with all
# the ISO-codes for countries, phonecodes, etc.
# The script is based on the following github-resources:
# + https://gist.github.com/adhipg/1600028
# + https://gist.github.com/paulochf/9616f85f3f3904f1c36f
CREATE TABLE IF NOT EXISTS `country` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iso` char(2) NOT NULL,
`name` varchar(80) NOT NULL,
`nicename` varchar(80) NOT NULL,
`iso3` char(3) DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,
`phonecode` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;