ich_iel
  • khaosoi khaosoi 1y ago 100%

    Ja, via Bridge. Ist allerdings nicht ganz trivial. Siehe z. B.: https://sven.tumelum.de/2021/10/05/bruecke-von-whatsapp-zu-matrix/

    3
  • ich_iel
  • khaosoi khaosoi 1y ago 100%

    Handy muss dazu definitiv nicht online sein.

    10
  • Useful android apps you are using?
  • khaosoi khaosoi 1y ago 100%

    jtx board - Journals, notes, tasks

    OpenTracks - Sports tracker

    Öffi - Public transport navigator

    ViMusic - Listen to music from YouTube

    7
  • Diebstahlfreundliche Fahrradständer in Kassel 🚴🏿‍♀️ ARD Mediathek
  • khaosoi khaosoi 1y ago 100%

    Weiß gar nicht genau. Muss mal drauf achten. Aber vielleicht finden sie ja einen schnelle Lösung. Zwei Schweißpunkte sollten ja genügen.

    2
  • Black screen when booting
  • khaosoi khaosoi 1y ago 100%

    Flashing an image that doesn't pass signature verfication seems not like a good idea. Please verify your image before flashing it.

    Which instructions did you follow? The one from LineageOS has a section "Installing LineageOS from recovery". Please read the full instruction before doing anything. Have you followed the mentioned steps there already?

    2
  • Mil Mi-12 - what a monstrosity
  • khaosoi khaosoi 1y ago 100%

    I was a bit disappointed it doesn't seem to have those little fans in the cockpit like other Mis have.

    2
  • I just discovered this [little girl](https://en.wikipedia.org/wiki/Mil_V-12). I guess the soviets tended to build enormous flyging machines.

    13
    2
    https://www.deutschland-tour.com/de/strecke

    cross-posted from: https://discuss.tchncs.de/post/868684 > Aktuell läuft ja die Tour de France, kein vergleich zur Deutschland Tour, aber: Diese startet in mit seiner 2. Etappe im August in Kassel und geht nach Winterberg. > > Laut GPX-Datei der Website startet man Friedrichsplatz und fährt dann über die Willie Allee am Schlosshotel vorbei über die Rasenallee richtung Dörnberg.

    3
    0
    https://www.deutschland-tour.com/de/strecke

    Aktuell läuft ja die Tour de France, kein vergleich zur Deutschland Tour, aber: Diese startet in mit seiner 2. Etappe im August in Kassel und geht nach Winterberg. Laut GPX-Datei der Website startet man Friedrichsplatz und fährt dann über die Willie Allee am Schlosshotel vorbei über die Rasenallee richtung Dörnberg.

    2
    0
    Aurora Store on LineageOS for microG
  • khaosoi khaosoi 1y ago 100%

    4.2.5 is available for me on LOS20. Are you sure you refreshed your repos? Just pull down in fdroid app.

    Not a fix, but a workaround: use Fennec. Its Firefox with the telemetry parts removed.

    1
  • Use a Python Script to Verify the Signature
  • khaosoi khaosoi 1y ago 100%

    Great to hear.

    You can always address files via absolute or relative paths.

    Relative:

    cd /Users/rommmelll/Downloads/
    adb sideload lineageos-recovery.img
    

    or absolute:

    adb sideload /Users/rommmelll/Downloads/lineageos-recovery.img
    

    Maybe you want to learn a little more about paths to understand how to reference files.

    I suggest you read a little further on that topic and play around with the terminal. Find some tutorial videos if that works better for you.

    1
  • Ich habe die Communites von hessischen Städten in der Sidebar eingetragen. Entnommen habe ich diese [hier](https://feddit.de/post/1261307). Falls noch welche fehlen, gerne hier kommentieren. Dann werden sie ergänzt.

    3
    0
    *Permanently Deleted*
  • khaosoi khaosoi 1y ago 66%

    Ich hab natürlich auf den Footer auf feddit.de geguckt ;) Milan hat den Fix gestern schon ins Backend gemergt, scheinbar ohne ein Deployment eines Patches. Hab mich inhaltlich nicht mit dem Fix auseinandergesetzt.

    Es ist wohl mein Cache. Ctrl+Shift+R hat nicht geholfen, aber Private Tabs zeigen es korrekt an.

    1
  • *Permanently Deleted*
  • khaosoi khaosoi 1y ago 100%

    Ich sehe die noch nicht wieder. Laut Footer ist das Backend auch noch auf 0.18.1

    1
  • XSS vulnerability fixed on tchncs?
  • khaosoi khaosoi 1y ago 100%

    I see. Thanks for the info.

    1
  • XSS vulnerability fixed on tchncs?
  • khaosoi khaosoi 1y ago 100%

    Thank you, Milan.

    6
  • XSS vulnerability fixed on tchncs?
  • khaosoi khaosoi 1y ago 100%

    Was/is there some temporary de-federation with other instances because of this? I've commented on a feddit.de post like 9 hours ago, and its still not visible over there.

    3
  • Use a Python Script to Verify the Signature
  • khaosoi khaosoi 1y ago 100%

    You're welcome. Hope you learned a little.

    1
  • Found an old picture of a Chinook carrying the flag of Singapore followed by two Apaches

    2
    0
    Use a Python Script to Verify the Signature
  • khaosoi khaosoi 1y ago 100%

    Please read and understand those prompts. Python missing the module pyasn1 (python3-pyasn1). Its mentioned in the readme as a requirement.

    You can install it via pip3 also as described in the readme.

    If you don't have pip3 installed on your Mac, I think you can get it via brew. I don't have a Mac myself, so I'm not entirely sure.

    1
  • Use a Python Script to Verify the Signature
  • khaosoi khaosoi 1y ago 100%

    cd means change directory. Its a CLI (Terminal) tool to - as the names suggests - change the directory you want to work in. It our case the folder with the unzipped files.

    Assuming your Mac username is "rommmelll" and that zip file is in your downloads folder, the path should be something like "/Users/rommmelll/Downloads/update_verifier-master". So the command cd /Users/rommmelll/Downloads/update_verifier-master should work.

    Hint: you can use the tab key to auto-complete here. Type cd /Users/r and press tab and it should fill in to cd /Users/rommmelll. Terminal app will try to autocomplete everything after the last /, in this case r. If there is more than one option with r it will list them and you can specify it more with rom and press tab again. See this video for example, for a few more details.

    Once you've cd'd into that folder you can continue with the python3 command from above.

    Note: If you don't specify a full path, something like /Users/rommmelll/some/file.zip, the Terminal app will always expect the files you're referencing in the current directory. So either use cd as mentions above, or use full qualified paths. Use pwd (print working directory) to find out which path you're currently in.

    Also have a look at some tutorials regarding the Mac Terminal.

    3
  • https://discuss.tchncs.de/c/helicopters [Universal Link](https://lemmy.world/c/helicopters@discuss.tchncs.de)

    10
    1

    This community is about helicopters and related topics. Be nice to each other.

    2
    0
    Use a Python Script to Verify the Signature
  • khaosoi khaosoi 1y ago 100%

    As already mentioned in your former post, this is just to verify the integrity of the files. It's not a neccessary step, but could safe you from a bricked phone.

    I think I have downloaded and installed Python 3 correctly.

    To find out just open the App Terminal and type python3 and hit return. Your should see something like this

    Python 3.11.3 (main, Apr  5 2023, 15:52:25) [GCC 12.2.1 20230201] on linux
    Type "help", "copyright", "credits" or "license" for more information.
    >>> 
    

    Download the python script from the mentioned location: Green "<> Code" button > Download Zip. Unzip that stuff.

    Open the Terminal again and cd into that folder. Then type

    python3 update_verifier.py lineageos4microg_pubkey /path/on/your/machine/lineage-18.1-20230614-microG-jfltexx.zip

    and see

    verified successfully

    2
  • www.hna.de

    ich find es immer absurd, dass hier von "sperren" die Rede ist. Es befanden sich tausende Leute auf der Straße, nur eben ohne Autos. Kann man gerne öfter machen.

    2
    0

    Let's create a lively community over here. Should we move / create a wiki, to prevent loss of information if something happens to the reddit wiki?

    15
    5

    Is there some application like a wiki in the fediverse? A place to gather and edit information together about a specific topic.

    16
    9
    https://tchncs.de/donate

    Independent services like tchncs are valuable and need money to run stable, so we can enjoy them. Consider donating if you can.

    4
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearDI
    Digitalisierung khaosoi 1y ago 100%
    E-Rezept

    Was haltet ihr davon? Habe vor ein paar Tagen die PIN für meine Krankenkassen App beantragt, um mich dann in der E-Rezept App authentifizieren zu können. Werde es bei der ersten Gelegenheit ausprobieren. Bin gespannt.

    1
    0
    kassel
    Kassel khaosoi 1y ago 100%
    Altstadtfest
    https://www.kasseler-altstadtfest.de/

    Am Wochenende ist wieder Altstadtfest. Ich muss gestehen, ich war bisher noch nie dort. Gibt ja offenbar eine Menge zu sehen. Hat jemand Empfehlungen?

    1
    0
    www.hessenschau.de

    Grade in der Innenstadt sollten aber noch einige dazukommen.

    1
    0
    https://open-meteo.com/en/docs

    Kein Unwetterfoto, aber eine nette, kostenlose Website / API mit Daten von DWD und europäischen Pendants. Einfach einen Ort auswählen und ein bisschen mit den verfügbaren Parametern rumspielen.

    1
    0

    Zur Community zu Allem in und um Kassel. Posts in German and English are welcome.

    1
    0