- Open Terminal and copy & paste this:
brew install lua
using System; | |
namespace Sandbox | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ | |
var platform = Environment.OSVersion.Platform; |
using System; | |
using System.IO; | |
using System.Text.Json; | |
namespace Sandbox | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ |
curl -sL https://github.com/Genymobile/scrcpy/archive/v1.19.tar.gz | shasum -a 256 |
import 'package:flutter/material.dart'; | |
import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
import 'package:shared_preferences/shared_preferences.dart'; | |
// A Counter example implemented with riverpod and shared_preferences | |
/// Providers are declared globally and specify how to create a state | |
final counterProvider = StateProvider((ref) => 0); | |
final sharedPrefs = Provider<SharedPreferences>((ref) { |
Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. | |
# Initialization code that may require console input (password prompts, [y/n] | |
# confirmations, etc.) must go above this block; everything else may go below. | |
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
fi | |
source /usr/local/share/powerlevel10k/powerlevel10k.zsh-theme | |
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. |