Elektrine
EN
Log in Register
Paige Chat Timeline Communities Gallery Videos Email DNS VPN Uptime Kairo
Back to Timeline
Remote

bmaxv

@bmaxv@noc.social
  • Open on noc.social

I can code, try to make games and cool stuff.

I know python, some C, and use

https://www.panda3d.org/

0 Followers
0 Following
35 Posts
Joined November 06, 2022
twitch:
https://www.twitch.tv/brucemalt

Posts

Open post
bmaxv
bmaxv @bmaxv@noc.social · Jul 30, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @bmaxv@noc.social
@ennolenze@infosec.exchange Das eine Instanz selbst zu betreiben überhaupt möglich ist, gibt z.b. auch dir die Option die Initiative zu ergreifen, eine Gemeinschaft zu gründen und eine Instanz betreibt, die eingehenden Content moderiert damit du ihn und andere ihn nicht sehen müssen. Dafür muss aber die Erkenntnis und der Wille da sein das das geht und das es man das tun will.
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Jul 30, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @ennolenze@infosec.exchange

@ennolenze@infosec.exchange

huh? Neeee.

Der Sinn von verteilten Servern im Fediverse die sich gegenseitig deföderieren und blocken können, war immer eine Pluralität, die auch "pfui bäh" inhalte technisch aushält, weil eben keine zentralisierte Firma oder Regierung oder Moralinstanz diktiert was gesagt werden darf und was nicht.

  • reporten
  • blocken
  • filtern
  • mit deinen Admins reden das man deren Instanz deföderiert wenn bestimmte Server einschlägig auffalen.

Das sind die Werkzeuge.

(1/+)

1
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Jul 12, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @lyss_lain@mastodon.social
@lyss_lain@mastodon.social One of the cooler features is the "federated" timeline that shows you *everything*. You can watch the internet's stream of consciousness in near real time. The most "information super highway" I have experienced yet. Also, check out #mosstodon And Filters. Filters are great!
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · May 14, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @gonzo_askold@mastodon.social
@gonzo_askold@mastodon.social @bagder@mastodon.social Since it was a big problem with a very desirable outcome, they have a website. https://reproducible-builds.org/ I think a major problem was that different hardware or architecture or versions of compilers produce different binaries that still work the same. That's why you couldn't just hash everything and compare. And reproducible builds compensate for those minimal variations.
1
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · May 12, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @doctormo@floss.social
@doctormo@floss.social Not saying this is "wrong", but what are the reasons for that, I would imagine that most data on such a forge is either just code or portable? So which parts are not easy to move and why? If you have the time to answer... it's just a little curiosity on my part.
0
1
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · May 09, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @digitalcourage@digitalcourage.social
@digitalcourage@digitalcourage.social Der Aufbau von dem Formular ist irgendwie komisch. Ihr wollt Namen + Kontaktdaten, aber der Text den man da unterschreibt ist nur so das was da halt als html steht. Ich finde das schon einen guten Zweck, aber warum muss ich euch da jetzt so vertrauen das ihr damit auch macht was ihr sagt das ihr damit macht? Geht das nicht besser? Bei "Petition" hätte ich gedacht das das eine Seite vom Bund oder Land ist.
0
2
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · May 08, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @veronica@explains.social
@veronica@explains.social That sounds like the best approach to crowdfunding yet? At least I'm not sure that the other systems use open source tech. Thanks for bringing that to my attention!
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · May 07, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @bmaxv@noc.social
@jimgar@hachyderm.io @eliocamp@mastodon.social ...what are we doing here? I feel silly if I'm telling someone in a university teaching position that functions and encapsulation exist. That's a five line function. Not being able to find a better solution than a list comprehension doesn't show me a willingness to experiment I would expect. It's not a serious argument. It's fine to not like something. I don't care. What irks me is implying scientific authority and then showing a lack of... openness for the thing.
0
3
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · May 07, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @jimgar@hachyderm.io
@jimgar@hachyderm.io @eliocamp@mastodon.social That is true. Personal opinion: I don't like list comprehensions. Mostly because they allow the constructions of foot guns and people then saying "see, python is so complicated". The (imo) correct solution is to: def get_cwd_files(): my_files = [] for filename in os.listdir(): my_files.append(f"{os.get_pwd()}/{filename}") return my_files And then just use that function. get_cwd_files() But... (1/2)
0
4
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · May 07, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @eliocamp@mastodon.social
@eliocamp@mastodon.social Hmmm. Yes. Of course it could be that your brain simply can't contain the vast(!) intellect required to write python. That's not your fault, it's a skill that can only be acquired by studying in a sufficiently pure field. Please consult the chart: https://xkcd.com/435/ Yes that was sarkasm. This is serious: I don't like that example. Don't use list comprehensions like that.
1
7
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · May 03, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @andrewnez@mastodon.social
@andrewnez I want this so bad. It doesn't even need to track every project under the sun, but if it's a library, the top 5 to top 10 projects that rely on it should give a good indication if the change is big and annoying or small.
1
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 30, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @nerdherz@mastodon.social
@nerdherz Joa. Was ich an diesen Diskussionen immer so nervig finde, ist das Bevölkerungsschrumpfung eigentlich kein Problem ist. Wenn es "Arbeitskräftemangel" gibt, steigt halt der Preis und die Wirtschaft guckt was sich wirklich lohnt und kompensiert. Es ist nur ein Problem wenn man meint, man hätte Anspruch auf X billige Arbeitskräfte, für immer. Und halt für Menschen die in Immobilien "investiert" haben und meinen sie hätten Anspruch auf Gewinn.
0
2
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 26, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @mattly@hachyderm.io
@mattly I think it's easier to say that Hanlon's razor is simply wrong, because the world has bad actors in it that do things maliciously. I don't think they're functionally similar either.
8
1
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 22, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @ianbetteridge@social.vivaldi.net
@ianbetteridge It's fundamentally wrong on how those companies operate and what their goal is. But I shouldn't be overly negative, what did you like about it?
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 14, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @Possiblydrew@pnw.zone
@Possiblydrew Most competent engineers stop taking advice from the engineering gambling machine, right before they strike it big!
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 12, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @HonkHase@chaos.social
@HonkHase@chaos.social Mir wurde gestern eine Quelle dazu geteilt: https://lwn.net/Articles/1065620/ das die Frequenz von Kernel bugs sich drastisch erhöht hat und das es jetzt auch valide reports sind. Nicht katastrophal zu viele, aber schon viel mehr Arbeit.
1
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 11, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @tazgetroete@mastodon.social
@tazgetroete bitte gerne verlinken, ich finde dazu bei euch nichts.
1
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 11, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @sebgiessmann@mastodon.social
@sebgiessmann @3sat @RainerMuehlhoff @AlenaBuyx ...warum ist sie empfehlenswert? Also was macht diese Sendung in deinen Augen besser als die vielen anderen?
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 09, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @redsteve@mastodon.social
@redsteve @kaffeeringe Gutes Zitat, ich möchte da nochmal einhaken. "Arbeit muss sich wieder lohnen." Zukunftsperspektive: Wenn ich nicht absehen kann das man in Deutschland sich etwas erarbeiten kann, also zum Beispiel Wohneigentum, warum soll man sich Mühe geben. Wenn der Konzern oder Firmenchef Ideen nur ausbeutet aber nicht belohnt, wieso sollte man kreativ werden. Und das erzeugt dann das Feedback der schlechten Produkte, die man sich zwar leisten kann, aber wozu?
1
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 01, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @luki@social.anoxinon.de
@luki @destatis der Pfeil an der Seite + Text erklärt es: 90% verdienen 33.828€ *oder mehr* In den 90% sind die anderen dargestellten Gruppen auch mit drin, weil z.b. 60.000 mehr ist als 33.000.
3
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Mar 27, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @dejan@d-64.social
@dejan@d-64.social Du bist frei selbst eine Partei zu gründen und dann darüber die Gelder einzuholen, wenn du Stimmen kriegst. Es ist nicht so gedacht das sich eine Privatperson *ohne Rückhalt und Unterstützung von anderen* einfach so wählen lassen kann. Ich fänds im Gegenteil sehr schlecht für die Demokratie, wenn einzelne Parteilose einfach so Förderungsgeld kriegen.
0
2
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Mar 22, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @kathrinpassig@mastodon.social

@kathrinpassig

"Ja wir machen keine online events, weil der persönliche Kontakt ist immer so nett."

😑

  • Fahrweg
  • Halbe Stunde mit Bullshit Gelaber zuhören verbringen, weil man will ja konstruktiv sein und nicht meckern.
  • Fahrweg zurück
6
6
1
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Mar 02, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @fff@chaos.social
@fff@chaos.social Ja aber morgen ist Dienstag?! Ich guck mal... 😉
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Jan 20, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @vanaken@mastodon.social
@vanaken@mastodon.social ...was denn so zum Beispiel? Was wäre denn eine "echte Konsequenz"?
0
2
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Jan 18, 2026
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @eskensaskia@mastodon.social
@eskensaskia@mastodon.social Erbschaftssteuer ist mir egal, macht Vermögenssteuer. Und sorgt dafür die politischen Verantwortlichen für #CumEx hinter die Gitter wandern hinter die sie gehören. Erinnert ihr euch wer das ist? Solltet ihr.
0
1
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Dec 15, 2025
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @tychotithonus@infosec.exchange
@tychotithonus@infosec.exchange ...that's just passkeys though, right? What is this hypothetical storage medium that you don't have to care about, but also have to care about enough that it doesn't fall into the wrong hands and that *isn't* tied to some user account, or is a literal piece of hardware you can just lose?
7
6
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Jul 16, 2025
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @stabi_berlin@openbiblio.social
@stabi_berlin@openbiblio.social @kulturSPK@social.bund.de There are no terms and conditions listed for the participation? Who owns the output?
0
2
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Apr 26, 2025
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @blog@event-federation.eu
@blog @lesion @heiglandreas @naturzukunft@mastodon.social @laurin @developers @mobilizon I hope I don't forget to do it myself, but if I do, I'd like to request a short-ish custom text field. Maybe like a mastodon post. Unless there are already different methods of attaching custom text like comments. I'm sure there are future or custom use cases where additional info would be nice and there should be a place to put them. E.g. a uid to correlate to some other data source.
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Feb 16, 2025
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @Edent@mastodon.social
@Edent@mastodon.social do you have data to back up the claim that those are the reasons that people who could be contributing, are choosing not to? Because I would like to contribute and none of those reasons apply to me. #linux The thing I want is actually good documentation that I can read to get me where I can be effective. And speedy replies.
0
2
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Feb 01, 2025
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @ErikUden@mastodon.de
@ErikUden@mastodon.de sure, but that's in the terms of almost all online products. If you don't agree to them, you can probably not post online. And by the way, where *are* e.g. mastodon.social's TOS? Not the moderation rules, the actual TOS? Because mastodon.social/terms gives me a 404... Hmmm where are those for mastodon.de Mr. Vertretungsberechtigter? 😜
1
1
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Jan 15, 2025
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @social@displayeurope.social
@social@displayeurope.social That link doesn't work properly, it automatically redirects to the main page, not a specific article.
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · May 16, 2024
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @BorisRhein@social.hessen.de
@BorisRhein @landesregierung Gut. Bitte mehr davon.
0
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Jan 01, 2024
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @voltdeutschland@mstdn.social
@voltdeutschland@mstdn.social mein quit Moment heute war das der kennenlern/reguläre vor Ort Termin kein Termin ist sondern auf Google workspace verlinkt. Tja.
1
0
1
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Nov 06, 2023
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @chrisisgr8@tech.lgbt
@chrisisgr8 You say "hire me" but casually looking I can't find any info for what. Like, if you're serious put a link to a cv or skillset or something?
1
0
0
0
Open post
bmaxv
bmaxv @bmaxv@noc.social · Jul 07, 2023
bmaxv
@bmaxv@noc.social

I can code, try to make games and cool stuff. I know python, some C, and use https://www.panda3d.org/

noc.social
Replying to @crowgirl@hachyderm.io
@crowgirl@hachyderm.io this is what "Let's scan internet chats for criminal activity" will look like in practice. @EU_Commission@social.network.europa.eu #Chatkontrolle #chatcontrol
0
1
2
0

Remote instance

noc.social
Open on original server
313k7r1n3
Elektrine

Tor hidden service

elekhj7afj4qnrr4yd3bkzslsyo5jgfxw3orgjkhlcxifueodybyiiad.onion

Platform

  • Email
  • Chat
  • Timeline
  • Communities
  • VPN
  • DNS

Company

  • About
  • Contact
  • FAQ

Legal

  • Terms of Service
  • Privacy Policy
  • Warrant Canary
  • Lite (no JS)
  • VPN Policy
  • Source code

Support

  • support@elektrine.com
  • Report Security Issue
Mail client setup IMAP mail.elektrine.com:993 POP3 mail.elektrine.com:995 SMTP mail.elektrine.com:465
© 2026 Elektrine. All rights reserved. Server: 18:05:51 UTC