fedora 44 setup
apps
- firefox dev
- obsidian
- golang
- jetbrains toolbox
- goland
- android studio
- sublime
fedora 44 setup
apps
| $sourceFolder = 'E:\From Barracuda G\sample\' | |
| # from ui preset | |
| $preset = "archive hevc" | |
| $outputFolder = $sourceFolder + '..\handbraked ' + $preset | |
| Get-ChildItem -Path $sourceFolder -Recurse -File -Include *.mp4, *.mov, *.mkv | ForEach-Object { | |
| $relativePath = $_.FullName.Substring($sourceFolder.Length) | |
| $outputPath = Join-Path -Path $outputFolder -ChildPath $relativePath | |
| $outputDir = Split-Path -Path $outputPath -Parent |
| #!/bin/bash | |
| watchlist=/opt/scripts/watch-cult-merch.txt | |
| sendAlert() { | |
| echo "STOCKED! sending sms alert" | |
| curl https://api.dev.ratatxt.com/outbox \ | |
| -u 'ak_somekeys:' \ | |
| -X POST -d '{ | |
| "device_id": "c2fslnn0eqtq26rmcn2g", |
| #!/bin/sh | |
| ver=$1 | |
| if [ -z "$ver" ] | |
| then | |
| echo go version required | |
| exit | |
| fi | |
| echo Downloading go version $ver... |
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "log" | |
| "strings" | |
| "net/http" | |
| "io/ioutil" | |
| "os/exec" |
| package main | |
| import ( | |
| "log" | |
| "fmt" | |
| "os" | |
| "net" | |
| "net/http" | |
| ) |
| <keymap version="1" name="Sublime Text win" parent="Sublime Text"> | |
| <action id="ActivateFavoritesToolWindow" /> | |
| <action id="ActivateProjectToolWindow" /> | |
| <action id="ActivateRunToolWindow" /> | |
| <action id="ChangesView.ShelveSilently" /> | |
| <action id="DatabaseView.SqlGenerator" /> | |
| <action id="DuplicatesForm.SendToLeft" /> | |
| <action id="DuplicatesForm.SendToRight" /> | |
| <action id="FileChooser.GotoHome" /> | |
| <action id="FileChooser.GotoModule" /> |
| export const ImmortalSSE = url => { | |
| let url | |
| let instance | |
| let listeners = [] | |
| const timeout = 2000 | |
| const create = () => { | |
| if (url == undefined) { | |
| return |
| # Apache 2 & PHP 5.6 | |
| cd ~ | |
| yum update -y | |
| yum install -y httpd httpd-devel | |
| rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm | |
| yum install -y php56w php56w-opcache php56w-devel php56w-gd php56w-imap php56w-mcrypt php56w-mysql php56w-pdo php56w-pear | |
| yum install -y php56w-pecl-geoip php56w-pgsql php56w-bcmath php56w-mbstring git |
| #!/bin/bash | |
| wget -q https://github.com/atom/atom/releases/latest -O /tmp/latest | |
| wget --progress=bar -q 'https://github.com'$(cat /tmp/latest | grep -o -E 'href="([^"#]+)atom-amd64.deb"' | cut -d'"' -f2 | sort | uniq) -O /tmp/atom-amd64.deb -q --show-progress | |
| sudo dpkg -i /tmp/atom-amd64.deb |