<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: makefu</title><link>https://news.ycombinator.com/user?id=makefu</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 28 Jul 2026 13:39:41 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=makefu" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by makefu in "My security camera shipped a GitHub admin token in its login page"]]></title><description><![CDATA[
<p>There is also <a href="https://thingino.com/" rel="nofollow">https://thingino.com/</a> which has a clear set of supported cameras. The installation is straight forward if you choose a cam with SD-Card flashing support. I upgraded two of the Sonoff Slim Gen2 without any issues.</p>
]]></description><pubDate>Fri, 24 Jul 2026 18:43:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=49039936</link><dc:creator>makefu</dc:creator><comments>https://news.ycombinator.com/item?id=49039936</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49039936</guid></item><item><title><![CDATA[New comment by makefu in "Stunnel and Airline Wi-Fi"]]></title><description><![CDATA[
<p>I was pleasantly surprised to see the appropriate NixOS configuration in the middle of the article. NixOS stream-lines the whole configuration process to a couple of lines of configuration which can be copy-pasted without changing anything.</p>
]]></description><pubDate>Sat, 20 Jul 2019 15:47:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=20486429</link><dc:creator>makefu</dc:creator><comments>https://news.ycombinator.com/item?id=20486429</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20486429</guid></item><item><title><![CDATA[New comment by makefu in "Dmesg under the hood"]]></title><description><![CDATA[
<p>Isn't `dmesg` just `journalctl -k` on operating systems with systemd enabled?</p>
]]></description><pubDate>Tue, 25 Sep 2018 08:50:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=18064591</link><dc:creator>makefu</dc:creator><comments>https://news.ycombinator.com/item?id=18064591</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18064591</guid></item><item><title><![CDATA[New comment by makefu in "Historian: Because Please Stop Deleting My Bash History"]]></title><description><![CDATA[
<p>For me, the *_history is a deeply personal thing as it shows how i work and how i changed my working over the years.<p>I think you are very brave to make this document available to the world - it is not something i would like to do.<p>EDIT: I think of it like the browser history for your daily work.<p>EDIT 2: It seems quite a lot of people think it is a good idea to store their bash_history on github, who knew!
google dork: "inurl:github.com intitle:bash_history"</p>
]]></description><pubDate>Thu, 13 Apr 2017 08:34:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=14105188</link><dc:creator>makefu</dc:creator><comments>https://news.ycombinator.com/item?id=14105188</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14105188</guid></item><item><title><![CDATA[New comment by makefu in "Programming languages that are actively developed on GitHub"]]></title><description><![CDATA[
<p>Not quite the same but nix[0] and the nix expression language [1] is also missing from the list.<p>[0] <a href="https://github.com/NixOS/nix" rel="nofollow">https://github.com/NixOS/nix</a>
[1] <a href="https://nixos.org/nix/manual/#ch-expression-language" rel="nofollow">https://nixos.org/nix/manual/#ch-expression-language</a></p>
]]></description><pubDate>Tue, 03 Jan 2017 02:13:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=13306132</link><dc:creator>makefu</dc:creator><comments>https://news.ycombinator.com/item?id=13306132</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13306132</guid></item><item><title><![CDATA[New comment by makefu in "Get Let's Encrypt Cert in Five Minutes"]]></title><description><![CDATA[
<p>on nixos it is:<p><pre><code>    services.nginx.virtualHosts."myhost.org" = {
        enableSSL = true;
        enableACME = true;
        root = "/var/www/myhost.org";
    }
</code></pre>
Put that in your host configuration and the nginx will be configured to start up the nginx with SSL enabled. All other locations required for the acme request are automatically configured. Systemd timers are also added for automatic renewal.
IMHO it does not get any better than this.<p>edit1: no extra location required</p>
]]></description><pubDate>Sun, 25 Dec 2016 19:09:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=13255060</link><dc:creator>makefu</dc:creator><comments>https://news.ycombinator.com/item?id=13255060</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13255060</guid></item><item><title><![CDATA[New comment by makefu in "Freelan - an open-source, multi-platform, peer-to-peer VPN software"]]></title><description><![CDATA[
<p>The points why freelan is better regarding security are no real issues, but tradeoffs in terms of performance which just copy-pasted from the tinc-vpn security faq[1].<p>I have been using tinc for quite a long time and it feels pretty stable, but the configuration of new nodes is quite a PITA. For that reason a lot of bootstrapping scripts have been built around this [2]. Also, i love the possibility to easily dump the whole (known) network graph and create great graphs from this info [3].<p>I am using it mostly for reaching hosts behind NAT and creating a secure environment for these hosts.I never have tried the 'connect whole network' feature.<p>[1] <a href="http://www.tinc-vpn.org/security/" rel="nofollow">http://www.tinc-vpn.org/security/</a><p>[2] <a href="https://github.com/krebscode/painload/blob/master/retiolum/scripts/tinc_setup/new_install.sh" rel="nofollow">https://github.com/krebscode/painload/blob/master/retiolum/s...</a><p>[3] <a href="http://euer.krebsco.de/graphs/retiolum/retiolum_1.svg" rel="nofollow">http://euer.krebsco.de/graphs/retiolum/retiolum_1.svg</a></p>
]]></description><pubDate>Mon, 30 Sep 2013 07:53:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=6468299</link><dc:creator>makefu</dc:creator><comments>https://news.ycombinator.com/item?id=6468299</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=6468299</guid></item><item><title><![CDATA[A Posix-compliant implementation of arrays in 17 lines of shell]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/makefu/array">https://github.com/makefu/array</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=5498697">https://news.ycombinator.com/item?id=5498697</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 05 Apr 2013 14:43:26 +0000</pubDate><link>https://github.com/makefu/array</link><dc:creator>makefu</dc:creator><comments>https://news.ycombinator.com/item?id=5498697</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=5498697</guid></item><item><title><![CDATA[New comment by makefu in "Sentience discovered in the Linux kernel"]]></title><description><![CDATA[
<p>it actually was and is up for me, just loading horribly slow. The essence of this post is: "Windows suspend/resume may work just fine. Mac too. But Linux’s suspend/resume isn’t a buggy pile of crap. It’s an intelligent buggy pile of crap, that just wants to be loved."</p>
]]></description><pubDate>Wed, 18 Aug 2010 11:08:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=1613785</link><dc:creator>makefu</dc:creator><comments>https://news.ycombinator.com/item?id=1613785</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=1613785</guid></item></channel></rss>