I hereby claim:
- I am mrdev023 on github.
- I am mrdev023 (https://keybase.io/mrdev023) on keybase.
- I have a public key whose fingerprint is A13C 67AF 9AAA D68C 2154 ABA2 0C25 7F73 A2A5 D56C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Verifying my identity on Peepeth.com 0xef8d8aa5cc2e0bfd9d8fee25fdb18c7962666917 |
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatefulWidget { | |
_MyAppState createState() => _MyAppState(); |
#!/bin/bash | |
sudo bash -c "echo 1 > /proc/sys/vm/drop_caches" | |
sudo bash -c "echo 1 > /proc/sys/vm/compact_memory" |
#!/bin/bash | |
function enable_core() { | |
bash -c "echo 1 > \"/sys/devices/system/cpu/cpu$1/online\"" | |
echo "Set Core $1 : enabled" | |
} | |
function disable_core() { | |
bash -c "echo 0 > \"/sys/devices/system/cpu/cpu$1/online\"" | |
echo "Set Core $1 : disabled" |
#!/bin/bash | |
yay icu63 | |
sudo ln -s /etc/ssl /usr/lib/ssl |
What is Redis?
Redis is an open source, advanced in-memory key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
######1. If you're running OS X, install redis in terminal using Homebrew :
brew install redis
######2. Add the redis and hiredis gems to the project's Gemfile (remember to bundle install
after you do this) :
#!/bin/sh | |
echo "Download last version of falchion patch" | |
wget https://raw.githubusercontent.com/mrdev023/falchion-shutdown/master/99-asus-falchion.hwdb | |
echo "Install patch" | |
mkdir -p $pkgdir/etc/udev/hwdb.d | |
cp ./99-asus-falchion.hwdb /etc/udev/hwdb.d/99-asus-falchion.hwdb | |
echo "Update hwdb" |
-- MarI/O by SethBling | |
-- Feel free to use this code, but please do not redistribute it. | |
-- Intended for use with the BizHawk emulator and Super Mario World or Super Mario Bros. ROM. | |
if gameinfo.getromname() == "Super Mario World (USA)" then | |
Filename = "DP1.state" | |
ButtonNames = { | |
"A", | |
"B", | |
"X", |