Skip to content

Instantly share code, notes, and snippets.

@ersingencturk
ersingencturk / ventura.txt
Created November 4, 2022 22:25
macos ventura upgrade/update problems
updating to macos ventura comes with some problems here are a few and fixes:
1- after update no more external monitors. simpy they didn't work. it turns out you have to go to settings> privacy & security > allow accessories to connect = always and turn on and off your monitors and plug in usb-c cables again
2- if you use ssh/git or anycombination of these you won't be able to use them errors like:
solution is add a new file: ~/.ssh/config with contents
Host *
HostkeyAlgorithms +ssh-rsa
from time import sleep
import ssl
import json
import os
from paho.mqtt.client import Client
username = "your VRM email"
password = "your VRM pasword"
portal_id = "your VRM portal ID"
@ersingencturk
ersingencturk / setup python.md
Last active May 26, 2024 15:09
Installing Python 3.11 & Rust on Raspberry Pi

Installing Python 3.11 & Rust on Raspberry Pi

Python 3.11 is not available as apt package on debian raspbian bullseye so installing from source needed

updatepython2v11.sh can be used to compile python 3.11 on raspberry pi

installing packages like bcrypt and cryptography needs rust compiling so rust compiler needed if you don't do that you will get error liek this:

Building wheels for collected packages: bcrypt