<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[HyperForum — General]]></title>
		<link>https://forums.hyperbola.info/index.php</link>
		<atom:link href="https://forums.hyperbola.info/extern.php?action=feed&amp;fid=94&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent topics at HyperForum.]]></description>
		<lastBuildDate>Thu, 02 Apr 2026 09:27:27 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Identity Crisis: Linux or BSD]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1172&amp;action=new</link>
			<description><![CDATA[<p>Hey, i was just going through the Hyperbola thing and you devs are doing exceptional work. the philosphy is on point and development is also great.</p><p>But since we have stopped Linux releases and working on BSD one, why the site logo is still saying GNU Linux. Why not scrape it? Maybe you&#039;ll be scraping it later after you get hyperbola out of pre alpha.</p>]]></description>
			<author><![CDATA[null@example.com (mvkbed)]]></author>
			<pubDate>Thu, 02 Apr 2026 09:27:27 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1172&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[[Linux] Beneficial endeavors to remove udev]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1171&amp;action=new</link>
			<description><![CDATA[<p>This thread is primarily about my endeavors to remove udev from my Artix Linux install, but the outlook is intended to help Hyperbola (among potentially others) achieve similar.<br />(While I don&#039;t intend on installing Hyperbola (primarily because partitionless-EXT4: [<span style="color: gray"><em>mkfs.ext4 -FL Label -b 4096 /dev/sdx</em></span>] is FAR too reliable for me to attempt anything else), I do have stars in my eyes for the project)</p><p><strong>Disclaimer</strong>: This thread may occasionally go off topic due to the vast amount of coverage with the sheer knowledge involved with a project like this, and this post may also change (for the better) since I&#039;m just bad at writing. <img src="https://forums.hyperbola.info/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p><p><strong>Future</strong>: I do intend to cover the history and motivations behind my decisions that lead me down such a painful path, but that&#039;s it&#039;s own can of worms regarding how much Linux has further devolved into a cloud-focused insecure monolithic abomination that&#039;s done nothing but abuse me since I started using it in 2012 after my primary WinXP (an OS which I still use to date) install corrupted itself <img src="https://forums.hyperbola.info/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p><p>My personal goal is to have minimal static device configurations within initrd for setting up what udev would otherwise detect and configure, which from what I need really only needs to mount the mouse and network devices (if that) to a common location, as anything else I can mount after login...<br />(Ultimately I intend to remove my init system (OpenRC) entirely to have nothing at all running as root, but that&#039;s a goal for potentially another thread if Hyperbola is interested in providing similar options)</p><p>My current solutions to many various issues with this approach is simply just configuration scripts run from a custom user-level service daemon after login... (Although I AM building software to ease the tediousness of everything)<br />If anything needs root, I&#039;m prompted with a terminal window to grant root to... (at least I know for certain what&#039;s running as root and when, unlike with OpenRC which does a ton of stuff behind the scenes you&#039;ll only know about via reverse-engineering)<br />One such example is a custom memory manager that <strong>properly</strong> clears swap and caches [<span style="color: gray"><em>echo 3 &gt; /proc/sys/vm/drop_caches</em></span>] to avoid Linux becoming sluggish when disk-cache would fill up the remaining unused RAM...<br />(I used to clear it every 10 seconds which worked quite nicely, but Wine would have problems finding my nvidia GPU (yet another thing to fix), so I reduced it to every minute as a workaround, which causes tolerable instability)</p><p>But regardless, that&#039;s getting off topic... <img src="https://forums.hyperbola.info/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p><p>The first major hurdle to removing udev was Xorg and libinput, which was, despite the tediousness, actually quite easy to do...<br />All you need to do for xorg is remove the extension modules for libinput and libevdev, but additionally ensure you have the extension modules installed for the mouse and keyboard directly<br />The rest is just ensuring those devices are configured in Xorg.conf</p><p>The keyboard is extremely easy to configure, as the extension (if not Xorg itself) primarily gets that from the TTY (via the launch command [<span style="color: gray"><em>Xorg -nolisten tcp :0 <strong>vt1</strong> -keeptty ...</em></span>]):<br /></p><div class="codebox"><pre><code>Section &quot;ServerLayout&quot;
    ...
    
    InputDevice    &quot;Keyboard0&quot; &quot;CoreKeyboard&quot;
    ...

EndSection

...

Section &quot;InputDevice&quot;
    Identifier     &quot;Keyboard0&quot;
    Driver         &quot;kbd&quot;
EndSection</code></pre></div><p>(Bonus info, joystick, wacom, and even hyperpen and wiimote are also supported by Xorg directly with extensions, which not many seem to know about)<br />The mouse however... what little info I found about mounting the mouse via [<span style="color: gray"><em>mknod /dev/input/mice c 13 63</em></span>] has failed to work, and I have yet to find any info that does</p><p>I assume a similar approach would be used to mount network devices, but I need some help figuring that out as [<span style="color: gray"><em>/sys/class/net/*</em></span>] is empty without udev... &gt;.&gt;</p><p><strong>IMPORTANT</strong>: Ensure your perms don&#039;t allow the user to freely read mouse/keyboard input, as that&#039;s the very reason why very many distros to date still run Xorg as root (ignoring the PE issues from doing so)<br />(Xorg should be ran as no more than user, or at least some mid-level group swapped to via newgrp, with the device nodes configured to allow Xorg to read them, but not the user, without granting full root access to Xorg)</p><p>But anyways, with Xorg out of the way, you should be able to remove udev without much issue...<br />The only thing that might stand in your way would be any packages depending on udev</p><p>dbus for example requires udev through libelogind, which obviously I don&#039;t have installed if I can remove udev XD<br />(The ONLY program I have that requires dbus at all is Nheko, which to make that work, I had to pack dbus into it&#039;s AppDir and run it with [<span style="color: gray"><em>dbus-run-session</em></span>] which loads a shoddy script that runs a notification daemon and keepassxc under that)</p><p>So yeah, there ARE hurdles, but nothing too overly complex, especially if you focus on portability like I prefer (I guess it depends on what you prefer though, since I don&#039;t use a WM that can&#039;t live without dbus for example, heck I don&#039;t even use a login manager at this current moment) <img src="https://forums.hyperbola.info/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p><p>I&#039;ll save the details of what I run for the history/pain thread, as I think it might already surprise a lot of people I even run Xorg <img src="https://forums.hyperbola.info/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p>]]></description>
			<author><![CDATA[null@example.com (tcll)]]></author>
			<pubDate>Tue, 31 Mar 2026 20:57:06 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1171&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[How do you feel about the «more ardent radicalization» of the project?]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1170&amp;action=new</link>
			<description><![CDATA[<p>I&#039;m deleted text.</p>]]></description>
			<author><![CDATA[null@example.com (motherearth)]]></author>
			<pubDate>Sun, 29 Mar 2026 15:08:36 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1170&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Is Hyperbola's git server down?]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1161&amp;action=new</link>
			<description><![CDATA[<p><a href="https://git.hyperbola.info:50100/">https://git.hyperbola.info:50100/</a> returns 502 often, but sometimes it works.</p>]]></description>
			<author><![CDATA[null@example.com (Allen123456hello)]]></author>
			<pubDate>Mon, 26 Jan 2026 11:38:24 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1161&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[A few questions]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1159&amp;action=new</link>
			<description><![CDATA[<p>I just signed up because I wanted to ask questions of general order.<br />The reason I want to do it here is because because of the distro you created, I have the impression that it could come up with an interesting discussion.</p><p>I don&#039;t use Hyperbola, not because I think of it that is not interesting distro but because I recently discovered it and at the same time I use distro in permanent live mode and so maybe I would make a bit of difficulty to return to a distro that installs normally. However, I do not exclude that I could try it on qemu in the next few days.<br />But I like your vision and I would like to if the distro that I use respected the same principles and therefore I am still interested.</p><p>Let&#039;s start with questions in random order:<br />1) Why do you want to switch to bsd? their license seems more permissive than gpl, so there is no risk that corporations can abuse more than they already do?<br />2) What do you think about futo licence/statemets ? <a href="https://futo.org/about/futo-statement-on-opensource/">https://futo.org/about/futo-statement-on-opensource/</a><br />3) What do you thinkg about trusting computing? there is a way for escape? <a href="https://mikelev.in/futureproof/ime-mse-psp-tee-sep/">https://mikelev.in/futureproof/ime-mse-psp-tee-sep/</a></p>]]></description>
			<author><![CDATA[null@example.com (booreg)]]></author>
			<pubDate>Mon, 19 Jan 2026 18:08:44 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1159&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[The perception of Hyperbola OSs]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1157&amp;action=new</link>
			<description><![CDATA[<p>Hi all,<br />already for some time I have been thinking about Hyperbola, the community and the long term perspective.<br />I have been using &#039;free software&#039; for more than 20 years, and I have been supporting different projects for many years also. Some of those projects collapsed, few of them progresses maintaining their principles and most progressed by adapting — or by abandoning — their original ideals.<br />Over time I’ve become more selective. Does not matter how interesting a project sounds, in case it is not going anywhere I do not support anymore. Sometimes it is clear it will be wasted money, I could have helped more sustainable efforts.<br />So I have to ask myself, what makes a project to progress long-term? Common answers include gaining traction early, large volunteer continuity, being community-driven, or having backing from a foundation or business.  Some would say &#039;attach to their principles&#039; but others &#039;being flexible&#039;. After all these years, forgetting ideals, what I would definitely highlight of successful projects is to &#039;show activity&#039; and &#039;demonstrating utility&#039;. Unfortunately, today, visibility often means appearing in Phoronix or similar sites a couple of times a month, or at least in own site. At certain point I was a bit concern about Hyperbola, until I started monitoring &#039;<a href="https://wiki.hyperbola.info/doku.php?id=en:start&amp;do=recent">https://wiki.hyperbola.info/doku.php?id … ;do=recent</a>&#039;. May I suggest to highlight it somewhere?<br />Demonstrating utility: for me the basic act of utility is a OS release, what transforms all the hard work behind the scenes into something real for the community (by the way, targeting distrowatch).<br />Please, do not get me wrong, this post is not about being fair, it is about project sustainability, contributors and money. The perception, real or fictitious, is relevant.<br />Hyperbola is a project that attaches closely to my free software ideals. I am even fine supporting a &#039;niche&#039; system, but to have it also in the future I hope I can do a bit more on the perception out there.</p>]]></description>
			<author><![CDATA[null@example.com (bemc)]]></author>
			<pubDate>Sat, 10 Jan 2026 16:58:49 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1157&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[I will always try to help, not hurt.]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1148&amp;action=new</link>
			<description><![CDATA[<p>I was making this account to help Hyperbola remove software based on the policy Hyperbola made. I think I found three. Micropolis, Lugaru, and OpenArena.</p><p>I could post or search for more information if needed/desired or not if not desired.</p><p><a href="https://wiki.hyperbola.info/doku.php?id=en:philosophy:community_software#but_what_if_a_corporation_makes_a_free_program_under_a_free_software_license_for_selling_free_software_would_you_recognize_this_as_non-free">https://wiki.hyperbola.info/doku.php?id … s_non-free</a></p><p>I saw Micropolis was designed and implemented by Will Wright, <br />Copyright (C) 2002 by Electronic Arts.</p><p>It also had ADDITIONAL TERMS per GNU GPL Section 7 in the README file.<br />about its&#039; companies trademarks.</p><p>micropolis-activity/images/tiles-150.xpm<br />Has the SimCity Trademark in it.</p><p>Electronic Arts is a company.</p><p><a href="https://en.wikipedia.org/wiki/SimCity_(1989_video_game)#Micropolis">https://en.wikipedia.org/wiki/SimCity_( … Micropolis</a></p><p>The lugaru README.md shows in part</p><div class="quotebox"><blockquote><p>This is the same game as the one distributed by Wolfire Games on<br />[Lugaru HD&#039;s website](<a href="http://www.wolfire.com/lugaru">http://www.wolfire.com/lugaru</a>), though this repository<br />contains some further developments which are not (yet) featured in the<br />commercial version.</p></blockquote></div><p>and</p><div class="quotebox"><blockquote><p>Lugaru was originally developed by David Rosen of [Wolfire Games](<a href="http://www.wolfire.com">http://www.wolfire.com</a>)<br />and was [open sourced in 2010](<a href="http://blog.wolfire.com/2010/05/Lugaru-goes-open-source">http://blog.wolfire.com/2010/05/Lugaru-goes-open-source</a>).<br />It was made cross-platform with the help of [Ryan C. Gordon](<a href="http://icculus.org">http://icculus.org</a>).</p><p>Various forks were made at that time, and the most interesting developments<br />were put back together under the OSS Lugaru organization, originally on<br />[Google Code](<a href="https://code.google.com/p/lugaru">https://code.google.com/p/lugaru</a>) and then on<br />[Bitbucket](<a href="https://bitbucket.org/osslugaru/lugaru">https://bitbucket.org/osslugaru/lugaru</a>).</p><p>This new repository on [GitLab](<a href="https://gitlab.com/osslugaru/lugaru">https://gitlab.com/osslugaru/lugaru</a>) is run<br />by the same team, and aims at revitalizing the development effort to clean<br />things up, ensuring the code base builds and runs fine on all supported<br />platforms, and easing the packaging of Lugaru in Linux distributions.</p><p>Ideally, the updated code base could also be used to update the Lugaru HD<br />version sold by Wolfire Games once proven better than the current commercial<br />builds.</p></blockquote></div><p>So I thought this was &quot;corporate software like&quot; or that starting development funded by a business as this &quot;community-driven&quot; game may have had too much corporate funding for Hyperbola.</p><p>It looks like they (the lugaru community) wish to work to get any updated code base into the Wolfire Games version. The Wolfire Games version is also sold on Steam.</p><p>There is a link to the Wolfire Games website on the lugaru website.</p><p>Wikipedia also shows this was started by a company.</p><p><a href="https://en.wikipedia.org/wiki/Lugaru">https://en.wikipedia.org/wiki/Lugaru</a></p><p>OpenArena is a fork of the ioquake3 engine.<br />The company id Software LLC made the ioquake3 engine.<br />The company id Software LLC is a subsidiary of ZeniMax Media and that is a subsidiary of Microsoft.</p><p>As for my signature before</p><p>&quot;<br />John 3:16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.<br />&quot;</p><p>I thought to post that quote there because I&#039;m a Christian and I desired to share how God has love for everyone everywhere with that quote.</p><p>I know any quotes some people may not relate to but I hope everyone can relate to or understand love and kindness.</p><p>With the</p><p><a href="https://forums.hyperbola.info/misc.php?action=rules">https://forums.hyperbola.info/misc.php?action=rules</a></p><p>being against discriminate against people based on things like religion, ideology I would not think a quote about loving people would cause problems.</p><p>I do not know how active my account should be, though I was trying to be active enough to at least try to be helpful to Hyperbola.</p><p>As for any cross-posting I was trying to promote understanding or at least help understanding between any groups. If that could not be done I hoped at least groups could agree to disagree politely and in loving kindness and not make any false accusations against anyone anywhere or do any other evil thing against each other.</p><p>I can try to do better though I do not know how much help I can provide.</p><p>I&#039;m sorry for any problems I caused.</p><p>I love and care for you all.</p>]]></description>
			<author><![CDATA[null@example.com (Other_Cody)]]></author>
			<pubDate>Thu, 27 Nov 2025 21:30:46 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1148&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[my liberation progress part 1]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1147&amp;action=new</link>
			<description><![CDATA[<p>as i bothered throgh about in irc, i managed to do alot by removing any smartphone and using a normal cellphone + laptop with android apps(currently using fydeos but will switch to a waydroid solution soon) as my new cellphone is able to share mobile data over usb this plan seems much more reasonable to me</p>]]></description>
			<author><![CDATA[null@example.com (librecat)]]></author>
			<pubDate>Thu, 27 Nov 2025 11:42:26 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1147&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[How was my account removed and why?]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1146&amp;action=new</link>
			<description><![CDATA[<p>Somehow I could not log in and my email was not even found, so I did not know how to<br /></p><div class="quotebox"><blockquote><p>contact one member of the team</p></blockquote></div><p><a href="https://forums.hyperbola.info/viewtopic.php?id=784">https://forums.hyperbola.info/viewtopic.php?id=784</a></p><p>And I did not see the above forum post till after I tried to make an account to replace my old (maybe deleted) one.</p><p>I&#039;m posting here to ask about how my account was not found.</p><p>My password here at the forum was strong so I do not know how I could not find my account.</p><p>I may not have logged in it a little while, but I did plan to login at a later time.</p><p>I&#039;m sorry for making another account, but my other account was likely deleted without warning or a reason somehow.</p>]]></description>
			<author><![CDATA[null@example.com (Other_Cody)]]></author>
			<pubDate>Wed, 26 Nov 2025 17:26:56 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1146&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Arch Linux's "AUR" OS repository have malware]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1139&amp;action=new</link>
			<description><![CDATA[<p>According to the Linux news, the Arch Linux OS repository have recent user-defined uploads as malware. Sources state that Arch doesn&#039;t vet the uploads so its OS repository relies on community activity. Some say that more malware was uploaded after clearing the first malware batch.</p><p>For Arch users, I assume that a degree of diligence is required when it comes to installing programs. I assume that practice is verification before compiling the source code. A straight software installation from the OS repository is a blind check. The server have some questionable protocols that might as well jeopardize Arch into Windows or iPod Apple store.</p><p>I know that Hyperbola GNU/Linux-libre is regarded as a different OS from Arch Linux, but I can&#039;t shake the feeling that it uses some of its design. Can anyone ensure that a vetting process is in effect for any file uploads/edits in the Hyperbola OS repository? Furthermore, if Hyperbola does derive from Arch, does that mean there is a risk to unknowingly extract malware as a base for software on other Arch-like OS? If Hyperbola does indeed find itself at risk from derivation, it is a understandable move to develop HyperbolaBSD. And what about the Arch users, where should they go? I hope that they look forward to Hyperbola (while I can&#039;t vouch for encryption options, I can attest that Windows XP on a 32bit machine would be on a similar encryption level), but I suppose Parabola would suffice for their taste.<br />As they say, it is nigh time to <span class="bbu">abandon ship</span>, the <em>Arch ship</em>, that is.</p><p>Cited references:<br /><a href="https://www.bleepingcomputer.com/news/security/arch-linux-pulls-aur-packages-that-installed-chaos-rat-malware/">https://www.bleepingcomputer.com/news/s … t-malware/</a></p>]]></description>
			<author><![CDATA[null@example.com (Ribby)]]></author>
			<pubDate>Sun, 03 Aug 2025 06:16:12 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1139&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[My UXP experiments on OpenBSD]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1138&amp;action=new</link>
			<description><![CDATA[<p>using this mozconfig and patch i was able to run pale moon on OpenBSD, i am working on basilisk but its not done yet <a href="https://bpa.st/SCYQ">https://bpa.st/SCYQ</a><br />edit: i built 33.8.1</p>]]></description>
			<author><![CDATA[null@example.com (librecat)]]></author>
			<pubDate>Tue, 29 Jul 2025 09:05:52 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1138&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[what is hyperbolabsd like]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1135&amp;action=new</link>
			<description><![CDATA[<p>What are the changes done on OpenBSD to create HyperbolaBSD and which ones are planned for the future i am asking this because i am curious about the technical side of HyperbolaBSD, i am Librecat on libera.chat aswell and decided to move to forum for reading the answer later</p><p>offtopic: i personally weigh the advantages of using nonfree software vs the obvious downsides and having a fully libre desktop and laptop is not something i am intresred in but i can probably run hyperbolabsd on the &quot;old&quot; computers i upgraded from but even then i want a nonfree browser like firefox and nonfree ffmpeg</p>]]></description>
			<author><![CDATA[null@example.com (librecat)]]></author>
			<pubDate>Sat, 19 Apr 2025 09:35:27 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1135&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[[Suggestion] Open Collective Donation Platform]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1126&amp;action=new</link>
			<description><![CDATA[<p>Hello Hyperbola Linux-libre,</p><p>I see that you have some trouble regarding privacy issues when it comes to donations. Maybe this website, <a href="https://opencollective.com/">https://opencollective.com/</a>, can help? I also see that there are information regarding wire transfers. Maybe this website can help with safeguarding such information. There&#039;s no guarantee that it can consistently perform this task so I would consider multi-factor authentication, encryption, and fraud alerts whenever possible. What I like about this website is the fact that guests could donate to the account in question, reducing the threshold requirement for assistance.</p><p>I am not sure how libre this website is, but as far as I remembered, it supported software for UNIX-like operating systems such as Xfce desktop environment. Maybe Lumina can get funding for development? I like the command/application launchers on the Xfce panels, I could even get a custom lockscreen working that way. Even if Lumina could not get custom commands on its panel(s), I think I will figure something out like a desktop/menu shortcut or to custom lockscreen.<br /><span style="color: white">I know the wire transfer info could be cover, but it&#039;s probably consistent/better/safer/efficient to utilize the british pound (or similar instances) instead of euro?</span></p>]]></description>
			<author><![CDATA[null@example.com (Ribby)]]></author>
			<pubDate>Thu, 30 Jan 2025 00:37:35 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1126&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[I tell you how be a total keyboard programmer]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1115&amp;action=new</link>
			<description><![CDATA[<p>Hello,</p><p>I was found a way for be a total keyboard programmer, I publish a small colections of dash scripts:</p><p><a href="https://codeberg.org/srv/keyboard-mouse">https://codeberg.org/srv/keyboard-mouse</a></p><p>for take the goal, is compatible with Hyperbola and I use every day, I have some improves in my local machine but with that the goal is posible</p><p>I hope that could help you</p>]]></description>
			<author><![CDATA[null@example.com (saravia)]]></author>
			<pubDate>Fri, 13 Dec 2024 10:07:35 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1115&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[UXP still standing]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1109&amp;action=new</link>
			<description><![CDATA[<p>Since our last discussion about current web browsers insanity I have been taking a closer look at the reactions.<br />The good news is that even the &quot;open-source&quot; community is worry about the situation (a bit too lake). Most of them making a call to support a thing called LadyBug as a matter of hope. Reading further I was a surprised because in fact this LadyBug is now switching to Swift as programing language (Swift development is still lead by Apple). Anyhow, I was happy to see a couple of comments proposing supporting UXP as community browser, since last versions got much improve. So, yesterday I got the very last version of Basilisk and I was making some tests to see how it performs heavy sites. Let say that I was happy to see that I was able to cover most of my needs (including my bank site) better than before. <br />Please, do not get me wrong, I am not demanding. But somehow, I pointed to a terrible webBrowser panorama 2 days ago, maybe unnecessarily because we all already knew. And today I saw the remove of IceapeUXP as well. I do not know the situation between Iceweasel-UXP and Basilisk (it is mention in the wiki) but it is nice to know that UXP still moves.</p>]]></description>
			<author><![CDATA[null@example.com (bemc)]]></author>
			<pubDate>Fri, 15 Nov 2024 15:24:12 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1109&amp;action=new</guid>
		</item>
	</channel>
</rss>
