Skip to content

Instantly share code, notes, and snippets.

View constantine-nikolaou's full-sized avatar

Constantine Nikolaou constantine-nikolaou

View GitHub Profile
@tobi
tobi / kindle.rb
Last active September 25, 2022 02:37
Download your Kindle Highlights to local markdown files. Great for Obsidian.md.
#!/usr/bin/env ruby
# gem install active_support
require 'active_support/inflector'
require 'active_support/core_ext/string'
# gem install webrick (only ruby3)
require 'webrick'
# gem install mechanize
@Link-
Link- / osc_arabs.md
Last active September 8, 2024 06:57
Open Source Contributors in the Arab World

List has moved

I've moved the list here: https://github.com/Link-/Arab_OSC to allow for direction contributions

Arab OSC

List of the most influential Arab Open Source Contributors (Arab OSC)

This is a list of the most influential Arab Open Source Contributors. This list has been compiled based on recommendations and referrals from the community. Anyone can contribute to this list just create a Pull Request (PR)!

Open source contributions range from helping fix bugs, translation, providing design material, contributing to documentation or even being a core code contributor. It can take many forms. As such, the criteria to be on this list or to nominate someone for it are as follows:

@zsherman
zsherman / sitemap.js
Created August 23, 2017 22:11
Simple script to generate a sitemap from contentful.
import fs from 'fs'
import { getPosts } from './api/posts'
function formatDate(date) {
var d = new Date(date),
month = '' + (d.getMonth() + 1),
day = '' + d.getDate(),
year = d.getFullYear();
if (month.length < 2) month = '0' + month;
A. Algorithms & Data Structures
1. http://stackoverflow.com/questions/39927452/recursively-print-all-permutations-of-a-string-javascript (permutations)
2. http://www.programmerinterview.com/index.php/recursion/permutations-of-a-string/ (permutations)
3. http://www.geeksforgeeks.org/write-a-c-program-to-print-all-permutations-of-a-given-string/ (permutations)
4. http://multimedia.ucc.ie/Public/training/cycle1/algorithms-in-python.pdf (A & DS Book in Python)
5. http://js-algorithms.tutorialhorizon.com/2015/12/01/introduction-to-backtracting/ (backtracking)
6. https://www.redgreencode.com/recursion-see-recursion/ (recursion)
7. http://www.htdp.org/2003-09-26/Book/curriculum-Z-H-1.html#node_toc_start (CS Book)
8. http://stackoverflow.com/questions/717725/understanding-recursion (understanding recusion)
9. https://cses.fi/book.html (book)

Keybase proof

I hereby claim:

  • I am cnicolaou on github.
  • I am cnicolaou (https://keybase.io/cnicolaou) on keybase.
  • I have a public key ASBFP7NXhX9M-4u12JfBQUwN5peg3tR5O8uW1P_mWW5F5Qo

To claim this, I am signing this object:

@stowball
stowball / front-end-guidelines.md
Last active December 4, 2024 09:58
Front-End Guidelines
@omaraboumrad
omaraboumrad / config.json
Last active December 20, 2016 11:21
irc bot written in javascript for nodejs
{
"nickname": "xnodeuser",
"username": "xnodeuser",
"hostname": "myhost",
"servername": "myserver",
"realname": "xnodeuser",
"channel": "#xnodeuser"
}
@stnadmin
stnadmin / ingram-onix-conversion.json
Created November 21, 2016 16:42
This is used in the process of converting an ONIX XML file to a CSV file that we can digest.
{
"row-selector": "/ONIXmessage/product",
"columns": {
"product_sku": "concat('ingr', productidentifier/b221[contains(., '03')]/following-sibling::b244)",
"mfg_product_sku": "productidentifier/b221[contains(., '03')]/following-sibling::b244",
"brand_id": "publisher/b081",
"product_s_desc": "concat(title/b203,' by ',contributor/b035[contains(., 'A01')]/following-sibling::b036, ' and published by ', publisher/b081)",
"product_desc": "othertext/d102[contains(., '1')]/following-sibling::d104",
"product_thumb_image": "concat('http://stoysnetcdn.com/ingr/ingr', productidentifier/b221[contains(., '03')]/following-sibling::b244, '/ingr', productidentifier/b221[contains(., '03')]/following-sibling::b244, '.jpg')",
"product_full_image": "concat('http://stoysnetcdn.com/ingr/ingr', productidentifier/b221[contains(., '03')]/following-sibling::b244, '/')",
@bhtucker
bhtucker / upsert.py
Last active February 17, 2025 15:08
A demonstration of Postgres upserts in SQLAlchemy
"""
Upsert gist
Requires at least postgres 9.5 and sqlalchemy 1.1
Initial state:
[]
Initial upsert:

This document has moved!

It's now here, in The Programmer's Compendium. The content is the same as before, but being part of the compendium means that it's actively maintained.