Skip to content

Instantly share code, notes, and snippets.

@v1mkss
v1mkss / JetBrains Activation.md
Last active May 8, 2024 12:33
JetBrains Activation

Choose any IDE from Jetbrains, then the activation window opens, go to the “Proxy Settings” and paste the following:

  • Manual proxy configuration http:
    • Hostname: localhost
    • port: 80
  • No proxy for:
*.apache.org, *.github.com, *.github.io, *.githubusercontent.com, *.gitlab.com, *.google.com, *.gradle.org, *.jetbrains.space, *.maven.org, cache-redirector.jetbrains.com, cloudconfig.jetbrains.com, download-cdn.jetbrains.com, download.jetbrains.com, downloads.marketplace.jetbrains.com, ea-report.jetbrains.com, github.com, gitlab.com, google.com, gradle.org, jcenter.bintray.com, plugins.jetbrains.com, resources.jetbrains.com, www.jetbrains.com

Activation Key:

@gabe565
gabe565 / change-arc-icon.md
Last active May 8, 2024 12:33
Change Arc Browser Icon

Change Arc Browser Icon

arc

A collection of commands that change the Arc Browser icon.

Commands

Theme Command
Candy Arc defaults write company.thebrowser.Browser currentAppIconName candy
@colematt
colematt / byobu-cheatsheet.md
Last active May 8, 2024 12:33 — forked from devhero/byobu_cheatsheet
[Byobu cheatsheet] #byobu

Source: F9, Help - Quick Start Guide

Byobu is a suite of enhancements to tmux, as a command line
tool providing live system status, dynamic window management,
and some convenient keybindings:
@nrtkbb
nrtkbb / compile.sh
Last active May 8, 2024 12:32
Hello Cython in Maya
# Install pip
# $ curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python
#
# Install Cython
# $ pip install cython
#
# compile command
python setup.py build_ext --inplace

Transparent Restaurant Backend

In this task, you're going to implement a REST API for a interacting with a menu of a restaurant. The menu is given to you as a JSON file which you will parse and perform operations on. The required features will be listed below.

Description

In this restaurant, honesty is extremely promoted. So extreme, that the restaurant declares that differing quality of ingredients are used in their meals. Like that's not enough, it also allows the customers to choose the ingredients of each meal in different qualities. Each ingredient has the following quality levels:

  • low: the cheapest
  • medium: moderate
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 8, 2024 12:32
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@sleekweasel
sleekweasel / avd-prepare-first-time.sh
Created March 11, 2020 17:02
Bash/adb automation for setting up avds
#!/bin/bash
uidump=/tmp/${0##*/}.$$
unsyncd_uidump_matching_lines() {
adb shell 'rm -f /sdcard/dump.* && uiautomator dump /sdcard/dump.xml 2>/sdcard/dump.err && cat /sdcard/dump.xml' |
tr '<' "\n" |
tee $uidump.full |
grep -Ei "$1" |
xargs -rn1 |
@realenjoyer
realenjoyer / WL.csv
Created April 23, 2024 10:28
Here you can find a list of 15000 top $ENJOY holders (Snapshot Taken at 2024-04-22T00:00:00Z)
We can't make this file beautiful and searchable because it's too large.
Address,Balance
0xb6b701878a1f80197df2c209d0bdd292ea73164d,6.732254577217902e+10
0xe6d15aef7fa74241dfdc83a79814be99ccd9d8c8,8.690907205403254e+09
0x3a3f615b05aad54d8a7af1d1b20854f0513278da,3.396818521577127e+09
0x40c0e36e6921b1bef210503448f2acee5192d81d,3.6754405100132924e+08
0x430f09841d65beb3f27765503d0f850b8bce7713,3.630043999702476e+08
0x8106928e60bfe96a1c86cd17afb8a867e5e0d0a9,3.2483606499927497e+08
0xa9fb3e29b7f789faf8e2656bfc7f9bff2ed766e9,3.1927183420359284e+08
0x5b8ce4b3e7a74befbbad1954f9a2f1c1257ea84a,3.0162127859761006e+08
0xa30e4c545bbdc568a9491e7e339268ae0626464b,2.9114270578000003e+08
@codecitizen
codecitizen / serverless.yml
Created November 22, 2018 20:42
A serverless.yml file configuring a AWS ElastiCache redis instance that is accessible by all AWS Lambda functions deployed by this serverless function.
service: my-service
provider:
name: aws
runtime: nodejs8.10
stage: ${opt:stage, 'dev'}
environment:
REDIS_HOST:
"Fn::GetAtt": [ElasticCacheCluster, RedisEndpoint.Address]
functions: