George's Avatar

George

@geohop164.noetic.studio

๐ŸŒ Web dev ๐Ÿ“ฑ React Native ๐Ÿ Python ๐Ÿ—‘๏ธ JavaScript and sometimes some photography/videography - useless at the lot but at least I'm having fun https://github.com/GeoHop164 @bookr.band

80
Followers
91
Following
26
Posts
19.11.2024
Joined
Posts Following

Latest posts by George @geohop164.noetic.studio

Post image Post image Post image

Was almost in time for Christmas - simple live map-based quiz game where participants join on their phones and race to guess the correct locations in user-made quizzes

Think Kahoot with maps!

geoquizz.noetic.studio

#Game #Quiz #Maps #TypeScript

30.12.2025 14:23 ๐Ÿ‘ 4 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image Post image Post image

Probably far too niche for the audience I have here but I've released my second public project on GitHub!

Designed for apprentices in the UK too keep on top of the evidence they need for their assessments.

github.com/GeoHop164/KS...

#OpenSource #Electron #React #TypeScript #Apprentice

18.07.2025 11:01 ๐Ÿ‘ 8 ๐Ÿ” 1 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image

Fuck it, Windows Sever on the Google Nest display

#InternetOfShit

30.04.2025 19:57 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Video thumbnail

Back again with another project - a personal challenge to fix a problem I was having in 1 day

Just does one thing: takes a spreadsheet, plots it, all locally. A minimalist cross-platform app designed to be more convenient than plotting in Excel

github.com/GeoHop164/sw...

#Tauri #React #TypeScript

28.04.2025 15:45 ๐Ÿ‘ 4 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Will it survive enough to get you to your destination is the question

26.03.2025 16:44 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Few days late to this but sunnysidedown.band is now live! Check it out (and give @sunnysidedown.band a listen)

19.02.2025 10:58 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 1
React Native error screen on a tablet mounted in a museum.

React Native error screen on a tablet mounted in a museum.

Can't even escape React Native errors at the museum

01.02.2025 19:53 ๐Ÿ‘ 4 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Letter from Severn Trent featuring an AI-generated image in the corner

Letter from Severn Trent featuring an AI-generated image in the corner

Something about a *water company* of all people using pointless AI-generated pictures just doesn't quite seem right

03.01.2025 12:02 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Just spent way too long thinking these were pictures still loading in

29.11.2024 07:53 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Post image Post image

Any room in the feed for some light switches?
Don't look too close, they're rather in progress

29.11.2024 07:51 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

I didn't see it was you who posted this for a second and thought "huh, that really looks like Leonard"

29.11.2024 07:07 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

I think the os.system() call instead of learning how to do it properly really adds to it

28.11.2024 11:10 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

To be honest, this project is such a mess - it's the first ever coding project I did and so far nothing has broken enough to warrant a full rewrite - so it's all just working around whatever stupid decisions I made when *first learning* Python

28.11.2024 10:36 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image Post image Post image

Using the Minecraft font improves code quality by 5x, I don't make the rules

28.11.2024 09:38 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Oven

28.11.2024 05:28 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0
Python Flask function to play an MP3 on two Google speakers and flash LEDs when an endpoint is fetched.

@app.route('/dong')
def dong():
    def dong_bedroom():
        os.system("catt -d 192.168.1.7 volume 100")
        os.system("catt -d 192.168.1.7 cast ./doorbell-1.mp3")
        os.system("catt -d 192.168.1.7 volume 30")
    def dong_kitchen():
        os.system("catt -d 192.168.1.6 volume 100")
        os.system("catt -d 192.168.1.6 cast ./doorbell-1.mp3")
        os.system("catt -d 192.168.1.6 volume 30")
    def dong_led():
        r.get(f'https://192.168.1.21:164/office_led?door', verify=False)
    threading.Thread(target=dong_bedroom).start()
    threading.Thread(target=dong_kitchen).start()
    threading.Thread(target=dong_led).start()
    return Response('', 200)

Python Flask function to play an MP3 on two Google speakers and flash LEDs when an endpoint is fetched. @app.route('/dong') def dong(): def dong_bedroom(): os.system("catt -d 192.168.1.7 volume 100") os.system("catt -d 192.168.1.7 cast ./doorbell-1.mp3") os.system("catt -d 192.168.1.7 volume 30") def dong_kitchen(): os.system("catt -d 192.168.1.6 volume 100") os.system("catt -d 192.168.1.6 cast ./doorbell-1.mp3") os.system("catt -d 192.168.1.6 volume 30") def dong_led(): r.get(f'https://192.168.1.21:164/office_led?door', verify=False) threading.Thread(target=dong_bedroom).start() threading.Thread(target=dong_kitchen).start() threading.Thread(target=dong_led).start() return Response('', 200)

Doorbell chime wiring diagram was too complicated so I used 3 servers and 2 Google speakers to respond to a doorbell press instead.

Not much hope for the electrical engineering degree...

27.11.2024 19:23 ๐Ÿ‘ 20 ๐Ÿ” 3 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0

On brand

23.11.2024 13:21 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Video thumbnail

Bit of a throwback to 2020, with my first attempt at a "promo" for my product design project.

Looks like I had too much time on my hands...

#PWA #AdobeAE #AppDevelopment #ProductDesign

23.11.2024 07:49 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

โค๏ธ

22.11.2024 23:38 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Video thumbnail

Really wish I was allowed to share more about what's been my passion project this year.

Bringing a bit more aesthetic charm to corporate software, with a small hint of glassmorphism to jazz up the warehouse.

#Electron #Glassmorphism #UI #Animated #JavaScript #CSS #VisualDesign

22.11.2024 23:29 ๐Ÿ‘ 6 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Video thumbnail

The begining stages of a #React3Fiber tech demo type project for @sunnysidedown.band

#React #React3Fiber #ThreeJS #IndieBand #BuildInPublic

Check them out at sunnysidedown.band

22.11.2024 18:45 ๐Ÿ‘ 5 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 2

Congratulations Leonard, no one I would trust more to drive me around

22.11.2024 11:13 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image

Neobrutalism-inspired control panel page for smart home web app.

Colour scheme taken from a political infographic on Instagram - can't remember the message, but the colours were nice.

#PWA #Neobrutalism #CSS #SmartHome

22.11.2024 10:53 ๐Ÿ‘ 5 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Gonna miss this when macOS stops playing with x86 chips

21.11.2024 23:21 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image

Probably just gonna use this as a place to dump projects, ideas, and designs - so anyways here's a simple styled list UI

#ReactNative #BuildInPublic

21.11.2024 23:16 ๐Ÿ‘ 7 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Hello Bluesky, we are Sunny Side Down, a queer band from the UK !! โ˜€๏ธ๐Ÿณ

If you suck at chess, enjoy little critters and crave validation from your peers, you will find a home with our music !! ๐Ÿงš๐Ÿผโ€โ™€๏ธโœจ

Streaming wherever great music is streamed !! ๐Ÿค“โ˜๐Ÿป

21.11.2024 21:57 ๐Ÿ‘ 6 ๐Ÿ” 3 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Yeah I think you've got the hang of it

21.11.2024 08:33 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0