Skip to content

Instantly share code, notes, and snippets.

View i-emek's full-sized avatar

El Mehdi El Khayati i-emek

  • Kaufland e-commerce
  • Berlin, Germany
View GitHub Profile
@noghartt
noghartt / rss.opml
Last active March 13, 2026 07:04
My current list containing all RSS feeds that I think that is useful
<?xml version="1.0" encoding="UTF-8"?>
<!-- OPML generated by NetNewsWire -->
<opml version="1.1">
<head>
<title>Subscriptions-OnMyMac.opml</title>
</head>
<body>
<outline text="AAAS: Keyword search for query" title="AAAS: Keyword search for query" description="" type="rss" version="RSS" htmlUrl="https://www.science.org/" xmlUrl="https://www.science.org/blogs/pipeline/feed"/>
<outline text="News" title="News">
<outline text="Ars Technica - All content" title="Ars Technica - All content" description="" type="rss" version="RSS" htmlUrl="https://arstechnica.com/" xmlUrl="https://feeds.arstechnica.com/arstechnica/index"/>
@tareq-si-salem
tareq-si-salem / HuffmanCodeGenerator.java
Created August 5, 2016 17:58
File compression using Huffman Code
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.PrintWriter;
public class HuffmanCodeGenerator {