Skip to content

Instantly share code, notes, and snippets.

View ipenywis's full-sized avatar
💻
Check out my Portfolio islemmaboud.com

Islem Maboud ipenywis

💻
Check out my Portfolio islemmaboud.com
View GitHub Profile
@apolloclark
apolloclark / Buffer Overflow Tutorial in Kali.md
Last active May 13, 2023 20:14
Buffer overflow demonstration in Kali Linux, based on the Computerphile video
@Hupotronic
Hupotronic / h264-vs-vp8-test.md
Last active January 31, 2023 16:50
H.264 & VP8 Quality Comparison And Some Words on Future Video Formats

VP8 vs H.264 - Which One is Better?

So I was reading Hacker News and decided to read the comments in the thread about H.265 being approved. Pretty close to the top was this comment about VP9, Google's future video format. I have some words of my own about it and other future formats at the bottom of this post, but what jumped out from the comment to me was this part:

Many have already implemented VP8 (which is also slightly better than h.264 at this point)

The comparison linked to back up that statement is faulty for several reasons, such as not providing the source material used (hell, he doesn't even name the source material), exact encoding settings used (no, some random profiles are not enough), not providing the resulting encodes, only providing a

@DavidWells
DavidWells / language-list.txt
Created September 15, 2014 20:59
List of all language abbreviations for localization purposes
<label>French (France)</label> <value>fr_FR</value>
<label>Romanian (Romania)</label> <value>ro_RO</value>
<label>Portuguese (Brazil)</label> <value>pt_BR</value>
<label>Hebrew (Israel)</label> <value>he_IL</value>
<label>Ukrainian</label> <value>uk</value>
<label>German (Germany)</label> <value>de_DE</value>
<label>Italian (Italy)</label> <value>it_IT</value>
<label>Russian (Russia)</label> <value>ru_RU</value>
<label>Dutch (Netherlands)</label> <value>nl_NL</value>
<label>Hungarian (Hungary)</label> <value>hu_HU</value>
@Mikhus
Mikhus / gqlts.js
Last active October 29, 2019 21:56
GraphQL schema to TypeScript definitions. Usage: ./gqlts.js /path/to/schema.graphql > /path/to/schema.d.ts
#!/usr/bin/env node
/*!
* ISC License
*
* Copyright (c) 2019, Mykhailo Stadnyk <mikhus@gmail.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
@dominicknguyen
dominicknguyen / stack.c
Last active November 15, 2018 06:15
Linked List Stack in C
#include <stdio.h>
/*
Linked list implementation of Stack in C
I'm learning C so it's not that good!
Feel free to leave tips!
*/