Elektrine lite

← Feed

fleischie πŸ’―

fleischie28@layer8.space

<p>Generally curious.<br />Unnecessary effort.<br />Mostly wrong.</p><p>Software Developer by trade (<a href="https://layer8.space/tags/C" class="mention hashtag" rel="tag">#<span>C</span></a>) but also as a hobby (<a href="https://layer8.space/tags/zig" class="mention hashtag" rel="tag">#<span>zig</span></a>/#ziglang). Interested in Systems-level programming, i.e. graphics and audio. Somehow drawn to UI development - I used to do web development, now only as a hobby.</p><p>I am strongly opposed to the societal impact of &quot;AI&quot; and all of the tech-bro hype machinery behind it. I will block on suspicion alone.</p><p>πŸ‡©πŸ‡ͺ/πŸ‡ΊπŸ‡Έ<br /><a href="https://layer8.space/tags/nobot" class="mention hashtag" rel="tag">#<span>nobot</span></a></p>

Posts

  • Post #3175827

    πŸ™„ A random website wants to share my usage data with their 1000 (yes, one thousand) partners. For what? Slop content, that was not even proof-read?

  • Post #3175825

    I find it interesting, that zig itself has a no-LLM rule for its contributions, yet it is used for a lot of AI-centric products in the field. #zig

  • Post #3175824

    Hmm, why does zig have no built-in version of: ```c #include &amp;lt;stdio.h&amp;gt; #include &amp;lt;time.h&amp;gt; int main(void) { time_t rawtime; time(&amp;amp;rawtime); struct tm *timeinfo = localtime(&amp;amp;rawtime); fprintf(stdout, &amp;quot;Currently in DST: %s\n&amp;quot;, timeinfo-&amp;gt;tm_isdst ? &amp;quot;yes&amp;quot; : &amp;quot;no&amp;quot;); } ``` Or am I missing something specific? #c #zig