cd deps/Dependencies
git submodule add https://github.com/flathub/shared-modules.git
sudo apt update
sudo apt install flatpak flatpak-builder
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
import csv | |
with open("feedback.csv") as f: | |
dict_reader = csv.DictReader(f) | |
total = 0 | |
grade_total = 0 | |
ytotal = {} | |
ygrade_total = {} | |
for data in dict_reader: |
function Report-Disk | |
{ | |
param ( | |
$name, | |
$disks | |
) | |
$body = ($disks | Out-String) | |
$body = "$($name) $($body)" | |
Send-MailMessage -From 'ME <[email protected]>' -To 'ME <[email protected]>' -Subject 'Potential Disk Failure' -SmtpServer "smtp.gmail.com" -Body $body -Port 587 | |
} |
MyBusiness.php
namespace App\Classes;
use Google_Service;
use Google_Service_Resource;
use Google_Model;
use Google_Collection;
xcode-select --install | |
# /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
brew install b7zip cmake qt5 clang-format zsh mas watch git git-gui graphicsmagick ghostscript npm wget trash composer romkatv/powerlevel10k/powerlevel10k | |
brew install --cask vscodium vlc qt-creator keka db-browser-for-sqlite | |
brew install --cask adobe-acrobat-reader teamviewer | |
pip3 install requests | |
# pip3 install pandas pyodbc striprtf pathvalidate mysql-connector-python |
#!/usr/bin/env python3 | |
# pip3 install --user filehash untangle | |
import os | |
import untangle | |
from filehash import FileHash | |
obj = untangle.parse('redump.ps2.dat') |
takeown /f c:\windows\media /r | |
icacls "c:\Windows\Media\*.wav" /grant everyone:f "NT SERVICE\TrustedInstaller:F" "BUILTIN\Administrators:R" "NT AUTHORITY\SYSTEM:R" "BUILTIN\Users:R" | |
https://forums.civfanatics.com/attachments/silent-zip.357923/ | |
cacls c:\windows\media /t /c /g everyone:f | |
icacls c:\Windows\media\*.wav /grant "nt service\Trustedinstaller":f |
swagger: '2.0' | |
info: | |
description: API Documentations | |
version: 1.0.0 | |
title: TheGamesDB API | |
# put the contact info for your development or API team | |
# contact: | |
# email: [email protected] | |
license: |
import requests | |
import platform | |
api_url = '' | |
file_name = '' | |
if(platform.system() == 'Windows'): | |
from pyunpack import Archive | |
# pip install pyunpack | |
# pip install patool | |
api_url = 'https://api.github.com/repos/RPCS3/rpcs3-binaries-win/releases/latest' |
you'd need to download you're entitlements 1st | |
so login to PSN web store | |
then open this link https://store.playstation.com/kamaji/api/chihiro/00_09_000/gateway/store/v1/users/me/internal_entitlements?start=0&size=800&fields=game_meta,drm_def | |
save as JSON, i called them EU.json and USA.json as per region, then run through the script, not if you only have 1 account or of different region, adjust the script accordingly |