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 "AI" 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 &lt;stdio.h&gt; #include &lt;time.h&gt; int main(void) { time_t rawtime; time(&amp;rawtime); struct tm *timeinfo = localtime(&amp;rawtime); fprintf(stdout, &quot;Currently in DST: %s\n&quot;, timeinfo-&gt;tm_isdst ? &quot;yes&quot; : &quot;no&quot;); } ``` Or am I missing something specific? #c #zig