Skip to content

Instantly share code, notes, and snippets.

@stepp1
stepp1 / abstracts.txt
Last active April 26, 2024 08:36
papers.txt
Lossy Compression for Lossless Prediction: Most data is automatically collected and only ever "seen" by algorithms. Yet, data compressors preserve perceptual fidelity rather than just the information needed by algorithms performing downstream tasks. In this paper, we characterize the bit-rate required to ensure high performance on all predictive tasks that are invariant under a set of transformations, such as data augmentations. Based on our theory, we design unsupervised objectives for training neural compressors. Using these objectives, we train a generic image compressor that achieves substantial rate savings (more than $1000\times$ on ImageNet) compared to JPEG on 8 datasets, without decreasing downstream classification performance.
Recent Advances in Autoencoder-Based Representation Learning: Learning useful representations with little or no supervision is a key challenge in artificial intelligence. We provide an in-depth review of recent advances in representation learning with a focus on autoencoder-b
@no-defun-allowed
no-defun-allowed / dbyol.org
Last active April 26, 2024 08:35
Don't Build Your Own Lisp

Don’t Build Your Own Lisp

I feel somewhat pressed to give a negative review of this book. This comes from someone who has worked on various Lisp implementations, and written some amount of C, but that isn’t an excuse to be overly harsh. This book, however, does not provide many nice things to say, and plenty of un-nice things. My apologies in advance.

First off: God help you if you are going to write your first interpreter in C of all things. No one I know thinks it’s a good idea to start

@jeremysears
jeremysears / gremlin-cheat-sheet.md
Last active April 26, 2024 08:35
Gremlin Cheat Sheet in Groovy

Gremlin Cheat Sheet in Groovy

Gremin traversal examples taken from the excellent DS330: DataStax Enterprise Graph course.

Creating Vertices and Vertex Properties

Add a Vertex

Vertex u = graph.addVertex("user");
       u.property("userId","u2016");
 u.property("age",36);
@wsricardo
wsricardo / README.md
Last active April 26, 2024 08:34
Search in Logic, Lambda Calculus, Functional programming and LISP/Haskell languages, Python Lambda

Search Functional Programming

@shashotoNur
shashotoNur / cppguide.md
Last active April 26, 2024 08:34
Google C++ Guide

Google C++ Style Guide

Background

C++ is one of the main development languages used by many of Google's open-source projects. As every C++ programmer knows, the language has many powerful features, but this power brings with it complexity, which in turn can make code more bug-prone and harder to read and maintain.

The goal of this guide is to manage this complexity by describing in detail the dos and don'ts of writing C++ code. These rules exist to keep the code base manageable while still allowing coders to use C++ language features productively.

Style, also known as readability, is what we call the conventions that govern our C++ code. The term Style is a bit of a misnomer, since these conventions cover far more than just source file formatting.

@ZendaiOwl
ZendaiOwl / Notes.md
Last active April 26, 2024 08:34
For keeping random notes

Random Notes

  • Edit text in files

Command: sed

  • Delete a line
LINENR="1"
@xpepper
xpepper / how.to.distill.core.domain.from.legacy.app.md
Last active April 26, 2024 08:33
Thomas Pierrain & Bruno Boucard - How To Distill The Core Domain From Your Legacy App (Live Coding)
@sbolel
sbolel / instagram-comment-activity-deleter.js
Created April 2, 2024 14:21
Automate the deletion of all your Instagram comments from the 'Your Activity' section. Perfect for quick digital clean-up.
/**
* Deletes all user's comments from a specific Instagram page.
* This function automates the process of selecting and deleting user comments
* from the "Your Activity" section on Instagram.
*
* How to use:
* 1. Navigate to the Instagram comments page by going to:
* https://www.instagram.com/your_activity/interactions/comments
* 2. Open the developer console in your web browser:
* - Chrome/Firefox: Press Ctrl+Shift+J (Windows/Linux) or Cmd+Option+J (Mac)
@Sh4yy
Sh4yy / clx.go
Created April 25, 2024 20:39
Generate CLI commands for common tasks.
package main
import (
"context"
"errors"
"fmt"
"io"
"log"
"os"
"runtime"
<!DOCTYPE html>
<!-- "20 line router" -->
<!-- http://joakim.beng.se/blog/posts/a-javascript-router-in-20-lines.html -->
<html>
<head>
<meta charset="utf-8">
<title>Building a router</title>
<script>
// Simple JavaScript Templating
// John Resig - https://johnresig.com/ - MIT Licensed