If you have any issues with macOS, or need anything related to it check this documentation
Install Xcode Command Line tools :
# frozen_string_literal: true | |
require "bundler/inline" | |
gemfile(true) do | |
source "https://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
ruby "2.7.2" |
#!/usr/bin/env python3 | |
# Usage: ethsend.py eth0 ff:ff:ff:ff:ff:ff 'Hello everybody!' | |
# ethsend.py eth0 06:e5:f0:20:af:7a 'Hello 06:e5:f0:20:af:7a!' | |
# | |
# Note: CAP_NET_RAW capability is required to use SOCK_RAW | |
import fcntl | |
import socket | |
import struct |
If you have any issues with macOS, or need anything related to it check this documentation
Install Xcode Command Line tools :
# Install Command-line tools as dependency for Homebrew | |
xcode-select --install # Sets the development directory path to /Library/Developer/CommandLineTools | |
# Install Homebrew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
# Install Mas (command-line interface for Mac App Store) | |
brew install mas | |
# Search for Xcode showing only the first 5 results | |
mas search xcode | head -5 |
PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
# Stick this in your home directory and point your Global Git config at it by running: | |
# | |
# $ git config --global core.attributesfile ~/.gitattributes | |
# | |
# See https://tekin.co.uk/2020/10/better-git-diff-output-for-ruby-python-elixir-and-more for more details | |
*.c diff=cpp | |
*.h diff=cpp | |
*.c++ diff=cpp | |
*.h++ diff=cpp |
ffmpeg -framerate 25 -f image2 -pattern_type glob -i "*.JPG" -s:v 1920x1440 -c:v libx264 -r 25 ../timelapse.mp4 |
// the donut code with fixed-point arithmetic; no sines, cosines, square roots, or anything. | |
// a1k0n 2020 | |
#include <stdio.h> | |
#include <string.h> | |
#include <unistd.h> | |
#define R(mul,shift,x,y) \ | |
_=x; \ | |
x -= mul*y>>shift; \ |
Basically you need to get familiar with the react ecosystem. Here's some that you would be widely using
Update: I created jq-zsh-plugin that does this.
One of my favourite tools of my trade is jq. It essentially enables you to process json streams with the same power that sed, awk and grep provide you with for editing line-based formats (csv, tsv, etc.).
Another one of my favourite tools is fzf.