Skip to content

Instantly share code, notes, and snippets.

@PurpleVibe32
PurpleVibe32 / vmwk17key.txt
Last active May 23, 2024 10:54
Free VMware Workstation Pro 17 full license keys
Install VMWare Workstation PRO 17 (Read it right. PRO!)
Also, these keys might also work with VMWare Fusion 13 PRO. Just tested it.
Sub to me on youtube pls - PurpleVibe32
if you want more keys - call my bot on telegram. @purector_bot (THE BOT WONT REPLY ANYMORE) - Or: https://cdn.discordapp.com/attachments/1040615179894935645/1074016373228978277/keys.zip - the password in the zip is 102me.
---
This gist can get off at any time.
PLEASE, DONT COPY THIS. IF YOU FORK IT, DONT EDIT IT.
*If you have a problem comment and people will try to help you!
*No virus
@OlabodeAbesin
OlabodeAbesin / NIbssistitutionlist
Last active May 23, 2024 10:54
Nigerian bank, bank/institution codes and logo
[
{
"id": 376,
"InstitutionCode": "090270",
"InstitutionName": "AB MICROFINANCE BANK",
"Category": "9",
"dump": null,
"created_at": "2020-03-02 20:44:54",
"updated_at": "2020-08-24 00:02:52",
"deleted_at": null,
@CoderNamedHendrick
CoderNamedHendrick / cache_item.dart
Last active May 23, 2024 10:53
Caching Implementation.
import 'dart:convert';
final class CacheItem {
final String key;
final Object data;
final DateTime expiry;
const CacheItem._(this.key, this.data, this.expiry);
/// This factory constructor is used for caching data that shouldn't persist
@Luuk3333
Luuk3333 / spotify-calculate-most-skipped-tracks.py
Last active May 23, 2024 10:52
Calculates your most skipped Spotify songs
import json
import os
#
# Place this script in spotify data request > MyData directory.
#
THRESHOLD = 3000 # time in milliseconds to determine a 'skip'
AMOUNT = 100 # amount of skipped tracks to display
@davidhcefx
davidhcefx / Git-學習筆記.md
Last active May 23, 2024 10:53
My Git Learning Notes

Commands

Basic

  • git init: build .git folder
  • git status
  • git add .: select all files
    • --patch: 可以只加部分行數

Commit

  • git commit: will open CLI text editor
@7einhalb
7einhalb / CF7 - Shortcode
Created September 19, 2019 07:52
Contact Form 7 - Spamschutz Quiz
[quiz random-math-quiz "Spamschutz: Wieviel ist eins plus zwei? (Bitte Zahl eingeben)|3"
"Spamschutz: Wieviel ist drei minus zwei? (Bitte Zahl eingeben)|1"
"Spamschutz: Wieviel ist fünf minus zwei? (Bitte Zahl eingeben)|3"
"Spamschutz: Wieviel ist zehn minus zwei? (Bitte Zahl eingeben)|8"
"Spamschutz: Wieviel ist elf minus zwei? (Bitte Zahl eingeben)|9"
"Spamschutz: Wieviel ist zehn minus fünf? (Bitte Zahl eingeben)|5"
"Spamschutz: Wieviel ist drei minus zwei? (Bitte Zahl eingeben)|1"
"Spamschutz: Wieviel ist zehn plus eins? (Bitte Zahl eingeben)|11"]
@marcogrcr
marcogrcr / sigv4_using_http_client.py
Last active May 23, 2024 10:48
Send request with SigV4 in python using boto3
from boto3.session import Session
from botocore.auth import SigV4Auth
from botocore.awsrequest import AWSRequest
from botocore.credentials import Credentials
from http.client import HTTPConnection, HTTPSConnection
import json
import os
from urllib.parse import urlparse
def sigv4_request(
@masemoel
masemoel / BuildGuide.txt
Last active May 23, 2024 10:42
How to build an A12+ ROM from scratch under Ubuntu 22.04 (or based) and higher
To build a A12+ (AOSP/LOS based) on Ubuntu 22.04+ (or distros based on it), there are four main steps:
(This guide is applicable for recoveries as well (TWRP, OFRP...))
Working on Android 12 and upper
#################################################################
# Step 1: Setup your environment #
#################################################################
****Setup Linux to build Android****

Ruby: The future of frozen string literals

What is a literal?

In programming languages, literals are textual representations of values in the source code. This is a syntactical concept.

Some examples:

7 # integer literal
@Zafnok
Zafnok / LEARN.md
Last active May 23, 2024 10:41
Understanding how HVM works

Understanding how HVM works

Introduction

HVM takes the ideas of Interaction Combinators and combines it with the ideas of Type Systems, Functional Programming, and Compilers, to create an implementation of Yves Lafont's ideas into a highly parallelized runtime.

Resources

Start with the HVM whitepaper and HOW page of the repo, and if that makes sense to you, great! You're probably too smart for everything after. Otherwise, read into the next sections to develop the knowledge you're missing.

Intro to Lambda Calculus

Much of the Interaction Combinator papers are written with an audience presumed to be familiar with lambda calculus, so it is good to have some knowledge here before jumping into the Interaction Combinators section.

  • [Programming Languages](htt