Skip to content

Instantly share code, notes, and snippets.

View aikins01's full-sized avatar
💭
weaving my dreams

Aikins Laryea aikins01

💭
weaving my dreams
View GitHub Profile
@aikins01
aikins01 / elementaryos.md
Created January 13, 2021 21:19 — forked from isneezy/elementaryos.md
elementaryOS | Things To Do After Installing elementary OS Hera(5.1)

First Things First

  • Enable PPA

     sudo apt update
     sudo apt install software-properties-common
  • Install apt-fast

@aikins01
aikins01 / idevicerestore.sh
Created January 24, 2021 03:42 — forked from stek29/idevicerestore.sh
idevicerestore on linux (Debian-based)
sudo apt update
# sudo apt upgrade
sudo apt install -y libcurl4-openssl-dev libplist-dev libzip-dev openssl libssl-dev libusb-1.0-0-dev libreadline-dev build-essential git make automake libtool pkg-config
git clone https://github.com/libimobiledevice/libirecovery
git clone https://github.com/libimobiledevice/idevicerestore
git clone https://github.com/libimobiledevice/usbmuxd
git clone https://github.com/libimobiledevice/libimobiledevice
git clone https://github.com/libimobiledevice/libusbmuxd
git clone https://github.com/libimobiledevice/libplist
@aikins01
aikins01 / proxy_flow.md
Last active June 3, 2021 18:28
Working behind a proxy on linux.

Global Proxy

Add proxies in /etc/environment for all users or in bashrc for current user

$ sudo nano /etc/environment
# Proxies
http_proxy="http://proxy.server.com:port/"
https_proxy=$http_proxy
ftp_proxy=$http_proxy
rsync_proxy=$http_proxy
no_proxy="localhost,127.0.0.1,::1"

To fix the import error of pylint in vs code, just open the settings.json and add.

{
    "python.pythonPath": "venv/bin/python",
    "python.linting.pylintPath": "venv/bin/pylint"
}
@aikins01
aikins01 / flutter-linux0flow
Last active September 15, 2021 07:03
Workflow for flutter on linux
sudo install brave-browser
install flutter from git # (with JDK 11)
sudo gpasswd -a $(whoami) flutterusers
sudo chown -R :flutterusers /opt/flutter
sudo chmod -R g+w /opt/flutter/
echo 'export CHROME_EXECUTABLE="'$(which brave-browser)'"' >> ~/.zshrc
flutter doctor
flutter upgrade
intall android-studio # (then I followed the Android Studio setup wizard, and also installed the Flutter and Dart plugins)
flutter doctor --android-licenses
@aikins01
aikins01 / pg_config_error.md
Created October 30, 2021 15:38
Fix for pg config error with django heroku

Fix for pg config error with django heroku

pg_config is in postgresql-devel (libpq-dev in Debian/Ubuntu, libpq-devel on Centos/Fedora/Cygwin/Babun.)

@aikins01
aikins01 / pipenv_cheat_sheet.md
Last active November 9, 2021 23:58 — forked from bradtraversy/pipenv_cheat_sheet.md
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell
@aikins01
aikins01 / Slack_solarized_themes
Created November 14, 2023 11:52 — forked from mgreensmith/Slack_solarized_themes
Solarized themes for Slack
Solarized
#FDF6E3,#EEE8D5,#93A1A1,#FDF6E3,#EEE8D5,#657B83,#2AA198,#DC322F
Solarized Dark
#073642,#002B36,#B58900,#FDF6E3,#CB4B16,#FDF6E3,#2AA198,#DC322F

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.