Skip to content

Instantly share code, notes, and snippets.

View ElianCodes's full-sized avatar
Probably drinking coffee

Elian ElianCodes

Probably drinking coffee
View GitHub Profile
@ElianCodes
ElianCodes / workflows-nightly.yaml
Created March 15, 2024 07:01
Upgrade your Astro integrations nightly
name: nightly
on:
schedule:
- cron: '0 0 * * *'
jobs:
upgrade:
runs-on: ubuntu-latest
env:
@ElianCodes
ElianCodes / update.sh
Created March 15, 2024 06:56
My update script
echo 'updating brew packages'
brew update
echo 'upgrading brew packages'
brew upgrade
echo 'updating gcloud'
gcloud components update
echo 'update NPM packages'
did:3:kjzl6cwe1jw14ag86j4hvu06t4wrekp81ki6uip67te8anocywndbqo87dm1ui6
@ElianCodes
ElianCodes / createNewSystem.sh
Last active September 18, 2020 06:02
basic install of debian software
#update system
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
#install basic tools
sudo apt install -y vim nano neofetch
#install anaconda
sudo apt-get install libgl1-mesa-glx libegl1-mesa libxrandr2 libxrandr2 libxss1 libxcursor1 libxcomposite1 libasound2 libxi6 libxtst6
@ElianCodes
ElianCodes / AptUpdate.sh
Created March 12, 2020 23:32
This code updates all packages on a debian-based OS
sudo apt-get update
sudo apt-get upgrade
sudo apt-get autoclean
sudo apt-get autoremove
@ElianCodes
ElianCodes / ManjaroUpdate.sh
Created March 12, 2020 23:29
This code updates the pacman packages installed on a Arch-based OS
sudo checkupdates
sudo pacman -Syu --noconfirm
sudo paccache -ru --keep 0
sudo pacman -Scc --noconfirm