Skip to content

Instantly share code, notes, and snippets.

View dekadentno's full-sized avatar
📚
I know a thing or two about a thing or two.

Matej dekadentno

📚
I know a thing or two about a thing or two.
  • Croatia
View GitHub Profile
@svmotha
svmotha / Sublime Text 3 Build 3103 License Key - CRACK
Created February 12, 2017 09:07
Sublime Text 3 Build 3103 License Key - CRACK
I use the first
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
@Buggytheclown
Buggytheclown / fix_me_JS.js
Last active April 10, 2025 18:24
Basic javascript interview questions. (Some 'bad' working scripts)
/*
* IIFE
* https://en.wikipedia.org/wiki/Immediately-invoked_function_expression
*/
(function() {
})();
/*
* Comparison operators
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@Nydhal
Nydhal / queue.cpp
Last active November 12, 2021 04:47
Queue Class example with explanations in C++
#include <iostream>
using namespace std;
class Queue { // Class definition
private: //private members can only be accessed in the class
int queue_size;
protected: // protected members can ba accessed in derived classes
int* buffer; // pointer to first element of array
int front; // used for removing an element of array
int rear; // user for adding an element into queue
@wojteklu
wojteklu / clean_code.md
Last active May 17, 2026 14:56
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules

@smariapena
smariapena / tester-questions.md
Last active June 29, 2022 10:33
Questions I Like To Ask Testers In Interviews, Mostly Exploratory, Mostly Mobile, Mostly Agency Work

Tester Questions

Style/Opinion/Purview

  • Do you have a smartphone, what’s your favorite app? How would you test it?
  • Tell me about your favorite bug that you found and reported.
  • What are the benefits of an exploratory approach to software testing? Downsides?
  • Where do test cases fit into your typical project lifecycle in an agile project in the client services world?
  • Where does design fit into your test coverage strategy? How do you work with designers?
  • Do you have any view on QA versus QC versus Test nomenclature?
@thegitfather
thegitfather / vanilla-js-cheatsheet.md
Last active May 4, 2026 23:41
Vanilla JavaScript Quick Reference / Cheatsheet
@abhijeetchopra
abhijeetchopra / 0-README.md
Last active January 11, 2026 04:54
Creating automatic scheduled backup copies of your Google Sheets using Google Apps Script

How to "Schedule Automatic Backups" of your Google Sheets

This tutorial demonstrates how to use Google Apps Script to:

  • Create copies of the Google Sheet in the desired destination folder automatically at set intervals.

  • Append the time stamp with each backup file's name.

  • Adjust time trigger for backing up every day/hour/minute.

@pkirkovsky
pkirkovsky / yubikey-reset.sh
Last active February 28, 2025 10:02
Utility for resetting a Yubikey to factory defaults using gpg-connect-agent. This will wipe out any stored keys and reset PINs to default values.
# Adapted from https://developers.yubico.com/ykneo-openpgp/ResetApplet.html
gpg-connect-agent <<EOF
/hex
scd serialno
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40
scd apdu 00 20 00 83 08 40 40 40 40 40 40 40 40
scd apdu 00 20 00 83 08 40 40 40 40 40 40 40 40
@paragonie-scott
paragonie-scott / crypto-wrong-answers.md
Last active April 22, 2026 21:43
An Open Letter to Developers Everywhere (About Cryptography)