ChanServ changed the topic of #haiku to: Open-source operating system that specifically targets personal computing. | https://haiku-os.org | Nightlies: https://download.haiku-os.org | Bugtracker: https://dev.haiku-os.org | SCM: https://git.haiku-os.org/ | Logs: https://oftc.irclog.whitequark.org/haiku | Matrix: #haiku:matrix.org | XMPP: #haiku%irc.oftc.net@irc.jabberfr.org
<Vidrep_64> gn
Vidrep_64 has quit [Quit: Vision[]: i've been blurred!]
<legendaryamerican> Won't let me register. It thinks I don't have cookies enabled.
<waddlesplash> what browser?
<legendaryamerican> Chrome here.
x10z has joined #haiku
mmu_man has quit [Ping timeout: 480 seconds]
legendaryamerican has left #haiku [#haiku]
HaikuUser has joined #haiku
HaikuUser is now known as LegendaryAmerican
<LegendaryAmerican> went in and registered using haiku ;-)
<nekobot> [haiku/haiku] waddlesplash pushed 1 commit to master [hrev55540] - https://git.haiku-os.org/haiku/log/?qt=range&q=c5325c66909a+%5E945c0e0786ca
<nekobot> [haiku/haiku] c5325c66909a - ArchitectureRules: Increase HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET on x86.
LegendaryAmerican has quit [Ping timeout: 480 seconds]
<AlienSoldier> imgur don't seem to work yet in our browsers
HaikuUser has joined #haiku
HaikuUser is now known as LegendaryAmerican
<LegendaryAmerican> so I uploaded the log from wget.
<LegendaryAmerican> and the syslog
mrentropyvcs has quit [Quit: Vision[]: i've been blurred!]
<LegendaryAmerican> oh interesting. switching from open to wpa and back to open again.. and net+ starts acting duh
<LegendaryAmerican> acting "duh"
<LegendaryAmerican> even ping starts to hesitate a bit longer after I switch back and forth.
<LegendaryAmerican> and traceroute acts geezered up
<LegendaryAmerican> ok so the rest is here. and the other stuff on ticket. so im off for the night. thanks
LegendaryAmerican has quit [Quit: Vision[]: i've been blurred!]
<nekobot> [haiku/haiku] waddlesplash pushed 2 commits to master [hrev55541] - https://git.haiku-os.org/haiku/log/?qt=range&q=d029b0dd9f89+%5Ec5325c66909a
<nekobot> [haiku/haiku] 7cee07165944 - FlatControlLook: Various clean-ups.
<nekobot> [haiku/haiku] d029b0dd9f89 - Control looks do not need to link against app_server.
flag has quit [Quit: leaving]
HaikuUser has joined #haiku
stzsch|2 has joined #haiku
flag has joined #haiku
HaikuUser has quit []
stzsch|3 has joined #haiku
kikadf has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
stzsch has quit [Ping timeout: 480 seconds]
kikadf has joined #haiku
stzsch|2 has quit [Ping timeout: 480 seconds]
stzsch|3 has quit [Ping timeout: 480 seconds]
Forza has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
Forza has joined #haiku
x10z has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
gouchi has joined #haiku
mchasard has joined #haiku
mchasard has quit []
mchasard has joined #haiku
gouchi has quit []
mchasard has quit []
kescher has quit [Quit: Bye]
kescher has joined #haiku
Maturion has joined #haiku
<PulkoMandy> jt15s[m], the developer docs does use Sphinx Haiku theme already. It is the same look as api.haiku-os.org and the userguide. But of course the Sphinx version does not include our logo in the header
<PulkoMandy> and the content is not well organized yet. My plan is that now that the docs are generated and easy to browse, people will be more interested in working on them
<jt15s[m]> PulkoMandy: Yeah, waddlesplash told me - I think my browser is just being weird again
<jt15s[m]> In terms of organisation maybe I could help out and see, though I'd have to read up on Sphinx (I've never worked with it before) and I'd need to find where all the documentation is kept
maquak has joined #haiku
<PulkoMandy> the documentation is in the haiku repository in docs/develop/
<PulkoMandy> I will work on it some more now that it is online. I already started planning for some new sections and reorganization of the existing content
<jt15s[m]> Alright
<jt15s[m]> Should we consider moving it to a subdomain btw?
<jt15s[m]> Something like moving all developer-related docs to docs.haiku-os.org
<jt15s[m]> Actually that might not be worth it
<jt15s[m]> Doesn't really change things
KapiX has joined #haiku
BrunoSpr has joined #haiku
<PulkoMandy> we can set one up similar to api.haiku-os.org, yes (it just redirects to something in www.haiku-os.org)
<julicenri> Is it advisable for a data package to store assets in a folder within "non-packaged" to allow users to install mods later on?
<julicenri> Or should a user-writable assets/data folder be put somewhere else?
<PulkoMandy> it's preferrable to have separate directories for packaged and non-packaged things
<PulkoMandy> user mods could go in home/config/non-packaged/data/ and packaged things in /system/data/
<julicenri> Could a data package just create folders in both locations like "mkdir -p $HOME/config/non-packaged/data/program" and "mkdir -p $dataDir/program" or are there other ways to go about it?
<PulkoMandy> use find_directory (from C/C++) or finddir (from shell) to locate the right place instead of hardcoding the directory name
<PulkoMandy> and creation of the non-packaged directory can only be done at runtime (after the package is installed)
<PulkoMandy> while creation of the packaged directory is done when the package is created
BrunoSpr has quit [Quit: Vision[]: Ich wurde verwaschen!]
BrunoSpr has joined #haiku
KapiX has quit [Quit: KapiX]
BrunoSpr has quit [Quit: Vision[]: Ich wurde verwaschen!]
<julicenri> Unfortunately the program being packaged already hardcodes what directories to search for assets in.
<julicenri> One of the hardcoded directories is ~ though, so it should see any mods put in by the user.
<julicenri> Might just need to add the hardcoded path from B_SYSTEM_DATA_DIRECTORY into the source so that it'll see the assets from the data package.
<julicenri> Kinda hacky, but that's what it already does for other platforms anyways.
HaikuUser has joined #haiku
HaikuUser has quit [Remote host closed the connection]
mmu_man has joined #haiku
<julicenri> How can HaikuPorter be told to just extract an archive directly into sources?
<julicenri> Currently dealing with an archive that doesn't have a root folder.
maquak has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…]
<julicenri> Or alternately, is there a way for HaikuPorter to work with the assumption that there is no SOURCE_DIR at all?
<julicenri> Already know that SOURCE_DIR can be omitted from a recipe, but HP still assumes a "program-$portVersion" SOURCE_DIR by default.
DKnoto has quit [Ping timeout: 480 seconds]
DKnoto has joined #haiku
maquak has joined #haiku
maquak has quit []
maquak has joined #haiku
maquak has quit [Read error: Connection reset by peer]
roiredX has joined #haiku
<roiredX> good day
roiredX has quit [Quit: Vision[]: i've been blurred!]
KapiX has joined #haiku
pinaraf_ has joined #haiku
pinaraf has quit [Ping timeout: 480 seconds]
HaikuUser has joined #haiku
HaikuUser is now known as mrentropyvcs
Scarecrow has left #haiku [Disconnected: Received SIGTERM]
Scarecrow has joined #haiku
Sikosis is now known as Guest3536
Sikosis_ has joined #haiku
Sikosis_ is now known as Sikosis
Guest3536 has quit [Ping timeout: 480 seconds]
countryboy has joined #haiku
<countryboy> hello
<mrentropyvcs> Howdy
<countryboy> mrentropyvcs: peace and love ...
<countryboy> wcs and rcs ...
<countryboy> wcs = world coordinate system ;-)
<countryboy> rcs = realative coordinate system ;-)
<mrentropyvcs> Sure. Why not?
<mrentropyvcs> I'm finding something odd with 32-bit Haiku on VMware Workstation. If I'm using Bridged network, I name resolution doesn't work.
<mrentropyvcs> If I switch to NAT, then name resolution does work, but the rest of it basically doesn't.
<mrentropyvcs> They're set up the same way as their 64-bit counterparts (which use Bridged with no problem), so I'm not sure what the issue is.
<Not-5726> [haikuports/haikuports] korli pushed 2 commits to master [+0/-1/±3] https://git.io/J6ybd
<Not-5726> [haikuports/haikuports] korli 5673551 - nlohmann_json: switch to any arch
<Not-5726> [haikuports/haikuports] korli 896c8d0 - cmake: fix install dirs, let FindPackage search in data/
<countryboy> mrentropyvcs: put as DNS = 8.8.8.8 8.8.4.4 192.168.1.1
<mrentropyvcs> It already is.
<countryboy> ah, ...
<countryboy> dunno ...
<mrentropyvcs> It's a mystery to me, too.
<countryboy> check each machine an unique ip ...
<countryboy> also for host and hosted ...
Maturion has quit [Remote host closed the connection]
<mrentropyvcs> Might be the host names. I don't think I ever changed them.
stzsch has joined #haiku
<Not-5726> [haikuports/haikuports] korli pushed 1 commit to master [+0/-0/±1] https://git.io/J6Sz6
<Not-5726> [haikuports/haikuports] korli 30e9f95 - mtxclient: remove dependency on nlohmann_json
<countryboy> there is a guide to build apps under haiku ?
<countryboy> ... is there ...
<nekobot> [haiku/haiku] waddlesplash pushed 1 commit to master [hrev55542] - https://git.haiku-os.org/haiku/log/?qt=range&q=b7a1261eefe4+%5Ed029b0dd9f89
<nekobot> [haiku/haiku] b7a1261eefe4 - pci: support 64-bit BAR addressing for MSI-X memory mappings
tbcr has joined #haiku
<Not-5726> [haikuports/haikuports] korli pushed 1 commit to master [+1/-1/±0] https://git.io/J6SMb
<Not-5726> [haikuports/haikuports] korli 48f1e86 - tweeny: bump version
<countryboy> a tutorial to build ... ?
<Not-5726> [haikuports/haikuports] korli pushed 1 commit to master [+0/-0/±1] https://git.io/J6S5a
<Not-5726> [haikuports/haikuports] korli 775061e - nheko: rebuild
<julicenri> Someone in the forums is suggesting that Haiku have its own cryptocurrency for donations, lol.
<Not-5726> [haikuports/haikuports] diversys pushed 1 commit to master [+0/-0/±2] https://git.io/J6SNv
<Not-5726> [haikuports/haikuports] diversys cf18990 - openssh: don't use hardlink when updating known_hosts file
<mrentropyvcs> HaiKoin?
<netpositive> drugs are good
<countryboy> medicine = drugs ...
<netpositive> mind-altering substances = drugs ;)
ClaudioM has joined #haiku
<waddlesplash> let's keep it <= "PG-13" in here please
<countryboy> netpositive: there are also medicine that alter mind ... ;-)
<Not-5726> [haiku/website] waddlesplash pushed 1 commit to master [+11/-0/±0] https://git.io/J690z
<Not-5726> [haiku/website] mmuman 1895a49 - blog: Some writing on past & current Lenovo products and practices
* mmu_man frenitically hits F5 on the website
<waddlesplash> mmu_man: the deploy failed due to a caching problem
<waddlesplash> it's rebuilding now
<mmu_man> eh :)))
x10z has joined #haiku
<Diver> mmu_man: images are not clickable, intended?
<mmu_man> Diver: I scaled them down and yet them ammount for 1.7MB so I didn't want to waste more space
<Diver> I mean some laptop pics are a bit small and opening them in a tab shows them in original size
<Diver> i think making them clickable would be nice :) not a big deal
<Not-5726> [haikuports/haikuports] korli pushed 1 commit to master [+1/-0/±1] https://git.io/J6He3
<Not-5726> [haikuports/haikuports] korli 6cbee2a - gtest: fix cmake config files
<waddlesplash> mmu_man's big post is now on the website
<waddlesplash> and submitted to HN https://news.ycombinator.com/item?id=28931599
<mmu_man> oh woa :)
<PulkoMandy> posted it to linuxfr as well: https://linuxfr.org/users/pulkomandy/liens/ok-lenovo-il-faut-qu-on-parle (but they seem busy talking about tartiflette recipes today)
<waddlesplash> ... and lobsters: https://lobste.rs/s/gs9tn3/ok_lenovo_we_need_talk
<mmu_man> PulkoMandy: ah nice idea, I have an account there, I could probably translate it
KapiX has quit [Quit: KapiX]
vdamewood has joined #haiku
<Not-5726> [haikuports/haikuports] korli pushed 1 commit to master [+0/-0/±1] https://git.io/J6HYM
<Not-5726> [haikuports/haikuports] korli fcf5049 - gtest: bump revision
countryboy has quit [Quit: countryboy]
countryboy has joined #haiku
<julicenri> waddlesplash: You forgot Reddit.
<julicenri> :D
<PulkoMandy> and linkedin? :D
<PulkoMandy> isn't it the right place for talking with companies?
<waddlesplash> julicenri: done
<nephele> Heh, i didn't expect to be qouted in the article, i suppose irc really is a public medium xD
<netpositive> mmu_man: congrats, great post!
<mmu_man> nephele: hehe :)
countryboy has left #haiku [#haiku]
bitigchi has joined #haiku
<nephele> Thoughts?
<nephele> Unfortunately I have not figured out whether we have any source for that Haiku Logo :/
<nephele> (to replace it with a svg, and to replace it in the dark mode with the other variant)
KapiX has joined #haiku
<PulkoMandy> the logo is in the haiku git repo in data/artwork
<PulkoMandy> there are two versions for light and dark backgrounds, as wonderbrush files and various png exports in different sizes
<nephele> Yes, but I need the leaf thingy aswell
<Not-5726> [haikuports/haikuports] korli pushed 1 commit to master [+0/-0/±1] https://git.io/J6QCw
<Not-5726> [haikuports/haikuports] korli f10dfec - poppler: qt5 and glib libs have the same SONAME since forever
<nephele> this one has this leaf outline in the background
<PulkoMandy> that's "haiku background leaf - outline"
<PulkoMandy> same place
<PulkoMandy> it's made from the wonderbrush file "haiku background leaf", probably by enabling only some layers
<PulkoMandy> oh
<PulkoMandy> actually there is a "HAIKU Background Leaf - outline" wonderbrush file there
<PulkoMandy> so you can just use that :)
<nephele> I see, there is no Haiku logo in there though
<nephele> Do I have to copy that into there, or how does that work?
<PulkoMandy> that's the background, and the haiku logo is the haiku logo
<nephele> It's one PNG in the userguide
<PulkoMandy> yes, I see that, but I don't see a reason to keep it that way?
<PulkoMandy> have the logo in an <img> tag and the leaf as the background-image attribute?
<nephele> Ah, makes sense. does img allow svgs?
<Not-5726> [haikuports/haikuports] scottmc pushed 1 commit to master [+2/-2/±0] https://git.io/J6Q0y
<Not-5726> [haikuports/haikuports] extrowerk abfbbf8 - libcoverart: bump to gitrev (#6288)
<PulkoMandy> no idea, I'm not a web developer :) but if they don't you can probably use <svg> ?
KapiX has quit [Quit: KapiX]
<nephele> If you develop the thing that displays websites but not websites, does that make you an anti-web-developer?
<julicenri> That's called backend webdev.
<julicenri> :P
<PulkoMandy> I refer to myself as full-stack developer, from hardware to web browser, but not anything above that
countryboy has joined #haiku
maquak has joined #haiku
gouchi has joined #haiku
<maquak> So compile_commands.json appears to work fine with IntelliSense in VS Code with small caveat that the last comma needs to be removed so that the file is indeed proper JSON :) Plus this requires to have cross compilation set up and jam installed on the same machine as VS Code
maquak has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…]
<nephele> Exporting the leaf to svg is broken, damn.
<mmu_man> hmm the links in dark mode don't always show up very well, depends on the LCD panel it seems
<waddlesplash> nephele: you get to fix another bug then! :P
<nephele> mmu_man: where?
<nephele> I doubt it's the LCD fault
<countryboy> if anybody would port gambas basic : pay attention not to store source in hidden directories ... :-)
<nephele> waddlesplash: Could also lobby webkit to add HVIF support ;)
<countryboy> who is Baldassarre ?
<countryboy> cu ...
countryboy has left #haiku [#haiku]
<waddlesplash> mmu_man: someone has a reply for you https://lobste.rs/s/gs9tn3/ok_lenovo_we_need_talk
<waddlesplash> (if you want an account on lobsters, I can invite you)
<nephele> The reply on the forum is also "nice" might aswell just delete that as spam...
tqh has joined #haiku
<mmu_man> waddlesplash: not sure I should bother replying though :p
maquak has joined #haiku
<mmu_man> + he links to a non-responding server
<Not-5726> [haiku/infrastructure] kallisti5 pushed 1 commit to master [+4/-0/±1] https://git.io/J67YV
<Not-5726> [haiku/infrastructure] kallisti5 eaea8f0 - loadingdock: Add a container to allow package submissions
<mmu_man> nephele: no it depends on the gamma I think, the color difference is probably too small with regular text
<nephele> mmu_man: please send me specific examples so i can investigate :)
<nephele> I'm already knee deep in CSS i might aswell fix the website if it has some issues
<julicenri> waddlesplash: Good job on shutting down that talk about Haiku making its own cryptocurrency.
<julicenri> :D
<waddlesplash> :)
<nekobot> [haiku/haiku] waddlesplash pushed 3 commits to master [hrev55543] - https://git.haiku-os.org/haiku/log/?qt=range&q=411ccfeb965a+%5Eb7a1261eefe4
<nekobot> [haiku/haiku] f7bd3509e32e - Bring back the framebuffer driver and accelerant.
<nekobot> [haiku/haiku] 66415cd2091a - Remove dumb-framebuffer handling logic from the VESA driver.
<nekobot> [haiku/haiku] 411ccfeb965a - app_server: Treat the framebuffer driver as a special case like VESA.
<mmu_man> nephele: well it shows on my article in Fx: https://wtf.roflcopter.fr/pics/YFYXUu4z/toGcDe6b.png
<mmu_man> "to the middle"…
<mmu_man> on an external screen I get the difference a little more but it's barely noticeable on the panel
<nephele> Well, that is indeed the link color I picked :D
<nephele> but before the text color was different, so the contrast has changed
<nephele> I suppose it should be made a bit clearer indeed, though personally I would obviously make it pink, but i doubt i can get away with that
<nekobot> [haiku/haiku] waddlesplash pushed 3 commits to master [hrev55544] - https://git.haiku-os.org/haiku/log/?qt=range&q=56d38808a5c2+%5E411ccfeb965a
<nekobot> [haiku/haiku] ed7b6396e345 - bios: make the BIOS writable
<nekobot> [haiku/haiku] 60ffcc21fb9f - radeon_hd: move some atombios headers to private/graphics
<nekobot> [haiku/haiku] 56d38808a5c2 - kernel: add memmem to available functions
<mmu_man> pink is underrated :)
<nephele> maybe we can frame it as some kind of night shift feature because it contains more red or something
<nephele> I could also just make the links on the website the same orange as the userguide as a first step to bring the visual style in line?
x10z has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
x10z has joined #haiku
countryboy has joined #haiku
nhtello has joined #haiku
<Not-5726> [haiku/infrastructure] kallisti5 pushed 1 commit to master [+0/-0/±1] https://git.io/J67ia
<nephele> Ah, i love using win 10 test machines. Start system -> blue screen -> reboots -> diagnostic -> result "Your computer was not started correctly" -> reboot -> blue screen
<Not-5726> [haiku/infrastructure] kallisti5 e58b609 - loadingdock: Add one more gerrit id
HaikuUser has joined #haiku
HaikuUser has quit []
<nephele> I'm giving up on trying to test the forced colors mode for now, apparently every windows 10 machine I touch breaks... Maybe someone else can tell me how it looks when it is published :)
<countryboy> nephele: it means that you are a bearer of truth ... :-)
<nekobot> [haiku/haiku] kallisti5 pushed 1 commit to master [hrev55545] - https://git.haiku-os.org/haiku/log/?qt=range&q=9b6c4b320fe8+%5E56d38808a5c2
<nekobot> [haiku/haiku] 9b6c4b320fe8 - riscv64: Add zstd to build-packages
<nephele> Maybe i'm just electrically charged
<countryboy> xD
<Not-5726> [haiku/infrastructure] kallisti5 pushed 1 commit to master [+0/-0/±1] https://git.io/J67Mb
<Not-5726> [haiku/infrastructure] kallisti5 f311c1c - loadingdock: Fix incorrect gerrit mount point
<bbjimmy_64> Is there anything wrong with this recipe? https://github.com/haikuports/haikuports/pull/6306/files
<Not-5726> [haikuports/haikuports] waddlesplash pushed 1 commit to master [+1/-1/±0] https://git.io/J67Qx
<Not-5726> [haikuports/haikuports] bbjimmy 516ee69 - Bump version... Added new Helpfile template and update helptext. (#6306)
<waddlesplash> bbjimmy_64: merged
NaGERST has joined #haiku
<NaGERST> Howdy. I saw the news about the radeon driver. Does this mean we can finally get sound over hdmi working on supported cards?
<NaGERST> i currently use geforce 980ti, but i also have a Radeon Fury X to test with.
<waddlesplash> nope
<NaGERST> waddlesplash: ok, thank you for responding so quickly.
<bbjimmy_64> waddlesplash thanks
<nekobot> [haiku/haiku] waddlesplash pushed 2 commits to master [hrev55546] - https://git.haiku-os.org/haiku/log/?qt=range&q=d81238bf2f63+%5E9b6c4b320fe8
<nekobot> [haiku/haiku] 3c181db6bf72 - vesa & radeon_hd: Remove unneeded and incorrect free().
<nekobot> [haiku/haiku] d81238bf2f63 - framebuffer.accelerant: Utilize AreaDeleter.
<Not-5726> [haikuports/haikuports] korli pushed 1 commit to master [+0/-0/±1] https://git.io/J67hA
<Not-5726> [haikuports/haikuports] extrowerk 55a1818 - Gerbera : implement test (#6310)
<nekobot> [haiku/buildtools] waddlesplash pushed 2 commits to master [btrev43181] - https://git.haiku-os.org/buildtools/log/?qt=range&q=9e6821c209c1+%5E4b7b6c63e80d
<nekobot> [haiku/buildtools] 72c791bc1f60 - jam: update default paths in Jambase
<nekobot> [haiku/buildtools] 9e6821c209c1 - jam: update version
countryboy has left #haiku [#haiku]
<Not-5726> [haiku/infrastructure] kallisti5 pushed 1 commit to master [+1/-0/±0] https://git.io/J65fm
<Not-5726> [haiku/infrastructure] kallisti5 8e59a6f - loadingdock: Add a readme
<nekobot> [haiku/haiku] waddlesplash pushed 2 commits to master [hrev55547] - https://git.haiku-os.org/haiku/log/?qt=range&q=9a594d0a607d+%5Ed81238bf2f63
<nekobot> [haiku/haiku] 718fce997a0b - drivers/input: Fix warnings and enable Werror
<nekobot> [haiku/haiku] 9a594d0a607d - bus_managers/firewire: Fix warnings
<nekobot> [haiku/haiku] waddlesplash pushed 1 commit to master [hrev55548] - https://git.haiku-os.org/haiku/log/?qt=range&q=245e83121368+%5E9a594d0a607d
<nekobot> [haiku/haiku] 245e83121368 - file_systems/googlefs: Fix warnings and enable Werror
Huggy has joined #haiku
<NaGERST> I have a strange problem, Hiku boots fine from the USB and partitions and installs just fine. But i can not boot from the install after reboot. i end up in Kernel Debug Land and have to hard reset the system. It is a asus Z9pe motherboard. 44cores 88 threads and 256gb ram, so it should not be a speed issue.
<NaGERST> it wont boot with any boot options
<waddlesplash> what's the message?
<nekobot> [haiku/haiku] waddlesplash pushed 1 commit to master [hrev55549] - https://git.haiku-os.org/haiku/log/?qt=range&q=f4742397e00b+%5E245e83121368
<nekobot> [haiku/haiku] f4742397e00b - bin/rc: fix wrong type of arguments to formatting function
<nekobot> [haiku/haiku] waddlesplash pushed 1 commit to master [hrev55550] - https://git.haiku-os.org/haiku/log/?qt=range&q=c224d63cacbe+%5Ef4742397e00b
<nekobot> [haiku/haiku] c224d63cacbe - SGITranslator: fix too few arguments to formatting function
<NaGERST> waddlesplash: i would have to reboot and photo it.
<nephele> Should probably patch aboutSystem to not report memory sizes with MB for such ridicilous sizes
<NaGERST> hehehe in the BeOS R4 days we all thought 256 megabytes were rediculous, now we have a thousand times the ram
<waddlesplash> 88 threads may be a new record for booting haiku on bare metal
<waddlesplash> actually I think we only claim to support 64...
<waddlesplash> so it may cut off some things
<NaGERST> but boots from the usb stick... is some cores disabled in the live system?
<waddlesplash> no
Sikosis has quit [Ping timeout: 480 seconds]
<NaGERST> it only boots when inserted in the Intel usb ports though, the ASMedia usb 3.2 ports are not supported by either windows nor haiku for booting... but works fine with any linux distro that has an up to date kernel.
<NaGERST> but that is not a big deal. the intel ports are numerous and works just fine.
<waddlesplash> ASMedia USB3 controllers have a bunch of quirks
<waddlesplash> I tried to avoid problematic features in the Haiku USB3 driver, but I don't keep track of any quirks
<waddlesplash> so, might be that. but I also just made a bunch of USB3 fixes last month too
<nephele> NaGERST: dunno about that, i'm like one year older than Haiku ;)
<NaGERST> nephele: OpenBeOS was started in 2001... so you are 19?
<NaGERST> oh i feel like a old grouch...
<NaGERST> maybe because i am...
<nephele> I'm 22
<nephele> Well, i guess 2 years older then?
bbjimmy_64 has quit [Quit: Vision[]: i've been blurred!]
<NaGERST> waddlesplash: i will take a photo of the kdl next reboot. I am rendering a factory design for another 2.3 hours so i can not reboot right now.
* waddlesplash is, also, not that much older than Haiku
<NaGERST> Of the large Haiku developers.... is Geist the oldest?
bbjimmy_64 has joined #haiku
<tqh> is it a bios or UEFI boot?
<NaGERST> tqh: I have tried both with and without CSM enabled. I have set everything to either UEFI or all to Legacy. Legacy got furthest, once it did not KDL but ended up stuck on one of the later icons.
<NaGERST> boot icons that is
<NaGERST> both settings work on the installer usb drive.
<tqh> ok, so then the content of the kdl is interesting.
<NaGERST> haiku can not boot however with gpu handoff or memory hole enabled.
<NaGERST> so i am inclined to think it is a memory issue
<NaGERST> is the ram limited on the usb installer?
<nephele> no, but you can enable the 4 gb memory limit if you want
<tqh> Afaik our setup of mem should be good up to 512GB, but probably untested
<NaGERST> aah ok
<tqh> over that bootloader will panic.
<NaGERST> nephele: i think i have tried every boot option available at boot options one by one and in many combinations.
<nephele> Then it's probably not the ammount of memory :)
<nephele> If the only difference is the boot device it could be the boot device
<NaGERST> But i am uncertain if i have tried ram limit with the legacy mode enabled... perhaps.
<nephele> have you tried using the usb boot loader to boot the disk?
<NaGERST> nephele: another great suggestion.. i will try that as well.
<tqh> I think bga booted on a 64 core machine.
<nephele> I'm so happy nick highlights work now :3
<NaGERST> nephele: vision?
<nephele> No, Renga, and xmpp client
<NaGERST> never heard of it.
<nephele> It's alright :), it's a native client for xmpp
<NaGERST> does xmpp support facebook messenger?
<nephele> Does facebook messenger support xmpp might be the better question
<NaGERST> I used to use some jabber client on BeOS and Zeta that worked fine with messenger.
<nephele> No idea honestly
<NaGERST> what is the difference between jabber and xmpp
<nephele> name change? :)
<NaGERST> aaah
Skipp_OSX has joined #haiku
<NaGERST> thank you, i am so stupid. so it is just an updated and renamed protocol
<NaGERST> ?
<nephele> i don't know the history behind the name change really :)
<nephele> but yes, it certainly is "updated" as in still beeing worked on
<NaGERST> it was appearantly renamed and forked in 2008 when Cisco systems aquired "Jabber, Incorporated" to avoud issues.
<NaGERST> jabber is a much catchier name though
<nephele> yes
<Not-5726> [haikuports/haikuporter] waddlesplash pushed 1 commit to master [+0/-0/±1] https://git.io/J65gT
<Not-5726> [haikuports/haikuporter] waddlesplash cd9ed95 - ShellScriptlets: Improve cmake/meson wrappers.
maquak has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…]
maquak has joined #haiku
fne0003 has joined #haiku
x10z has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<fne0003> did the merch ever get made for haiku?
<fne0003> there was an announcement there would be merch in septemeber made
x10z has joined #haiku
NaGERST has quit [Quit: KVIrc 5.0.1 Aria http://www.kvirc.net/]
tbcr has quit [Quit: WeeChat 2.8]
boistordu has joined #haiku
<Not-5726> [haikuports/haikuporter] korli pushed 1 commit to master [+0/-0/±1] https://git.io/J6dT0
<Not-5726> [haikuports/haikuporter] korli 7fae889 - python3 now handles tar.xz directly
HaikuUser has joined #haiku
HaikuUser has quit []
<Skipp_OSX> now that's a purple color scheme!
<nephele> Well, the browser is, but not the css :D
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
<rennj> modern firefox prompt prompt prompt..bug you bug you bug you..you want themes, you want this...just launch and work, stop bothering me.
<waddlesplash> time to merge a 7000 line .c file
<waddlesplash> (freebsd iflib)
<rennj> set me as your default browser...
<rennj> dns over http..
<rennj> bah..stop bothering me, and just launch a stupid window...stop tracking me you piece of shit. bookmarks.html is totally bullshit
<rennj> what data you made the bookmark
<rennj> how many sqlite db do you need
<rennj> ls -al *.sqlite |wc -l
<rennj> 9
<rennj> modern computing is one long con
<nephele> Firefox seems slow to start... want to delete your settings?
<rennj> i want to restore a specific and restore that image each time prior to launch
<nephele> burn firefox with its profile to a dvd :)
<rennj> i did it for widevine bullshit, but of course i get maybe 1 month of use
<rennj> cd /home/user1
<rennj> tar xf /opt/firefox/moz.tgz
<rennj> /opt/firefox/firefox
<rennj> i want a frozen image of the settings/tweaks
<rennj> user profile
<rennj> rm -rf ~/.mozilla ~/.local ~/.cache/mozilla /tmp/mozilla_ /tmp/Mozilla* /tmp/tmpaddon*
<rennj> on shutdown
<nephele> you should probably put tmpfs mounts there then
<rennj> my os is tmpfs
<nephele> it's just in memory and you can be sure it is void on shutfown
<rennj> immutable
<nephele> I wanted to make a linux distro with a virtual root / for some time, then i found haiku "oh it does that"
<rennj> and i been doing that bullshit since like 2005
<rennj> 15 years +
<rennj> unionfs/aufs/overlayfs and squashfs
<nephele> ah yes, the "magic of the internet" is broken again, gosh i hate imgur
<rennj> current 350MB.iso loads into ram...see the df -h outpit
ClaudioM has quit [Quit: leaving]
<rennj> overlayfs and squashfs getting in the linux kernel was good day
<rennj> for long time squashfs was outside the kernel..just another thing to compile
<rennj> and aufs leaks memory
<nephele> It doesn't sound very compfortable to use :)
<rennj> i do everything from vm's since 350MB doesnt hold much
<rennj> in 2005 128MB.iso, in 2021 350MB.iso
<rennj> not bad compared to 6GB-10GB normal linux install
<nephele> background-image: url(images/HaikuDark.svg), url(images/LeafDark.png);
<nephele> background: transparent no-repeat scroll 10px 0;
<nephele> Could someone tell me how with this in css i can get the "HaikuDark.svg" to be rendered lower in the element?
<nephele> so just move it a set number of pixels down or so
paul0 has joined #haiku
<nephele> Figured it out: background: url(images/HaikuDark.svg) no-repeat scroll 10px 10px, url(images/LeafDark.png) no-repeat scroll 10px 0;
fne0003 has quit []
<nephele> ah well, not a perfect copy but "good enough"
bitigchi has quit [Ping timeout: 480 seconds]
maquak has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…]
maquak has joined #haiku
maquak has quit []
<grossjonas[m]> Hi
maquak has joined #haiku
<grossjonas[m]> can you install true type fonts in haiku?
<rennj> my computer gets stolen again, they get no data...couple of generic vm's perhaps on unecrypted partition. they dont even get an os to boot
maquak has quit []
<Diver> grossjonas[m]: sure
<grossjonas[m]> Diver: how do you do that?
<Diver> you can install some already packaged fonts like msttcorefonts or ubuntu_font_family
<nephele> With the package manager :? or you can copy them to /system/non-packaged/data/fonts/ttfonts/
x10z has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Diver> or copy them manually to where nephele said
<grossjonas[m]> thx a lot, i'll try it
maquak has joined #haiku
<nephele> Download ubuntu fonts, set them as system fonts, and then set the system colors to those ubuntu uses and you have a fake ubuntu haiku :D
<Not-5726> [haikuports/haikuports] korli pushed 1 commit to master [+1/-0/±0] https://git.io/J6FLs
<Not-5726> [haikuports/haikuports] kwyxz 31fc211 - Retroarch: bump to 1.9.11 (#6262)
maquak has quit [Ping timeout: 480 seconds]
Guest3411 has quit [Quit: Reconnecting]
enick_113 has joined #haiku
Skipp_OSX has quit [Read error: Connection reset by peer]
Skipp_OSX has joined #haiku
enick_113 is now known as js
js is now known as Guest3577
<grossjonas[m]> <nephele> "With the package manager :? or..." <- thx, worked, i can select them now in the teminal 🕺
Guest3577 has quit [Quit: Reconnecting]
enick_470 has joined #haiku
enick_470 is now known as js
js is now known as Guest3578
tqh has quit [Quit: Leaving]
kescher has quit [Quit: Bye]
NaGERST has joined #haiku
<NaGERST> Is there a mastodon client for Haiku?
<NaGERST> Using a browser works... but i prefer a dedicated app
kescher has joined #haiku
<NaGERST> I wonder if Tokodon from kde would build in haiku?
<NaGERST> i have no idea what whalebird is built on, but it looks awesome
<NaGERST> but is is qt
<NaGERST> there is also pleroma for windows
<NaGERST> toot would work for cli
Guest3578 is now known as js
<nephele> qt works on haiku
<nephele> so, it might build :) there is quite some kde software ported to haiku, but then kde apps tend to have a whole lot of kde deps, so it depends
Skipp_OSX has quit [Quit: Textual IRC Client: www.textualapp.com]
<mmu_man> yeah unless it uses X11 calls directly Qt stuff should build quite easilly
<mmu_man> -l
nhtello has quit [Quit: Vision[]: i've been blurred!]
x10z has joined #haiku
gouchi has quit [Remote host closed the connection]
tbcr has joined #haiku
<nekobot> [haiku/haiku] kallisti5 pushed 1 commit to master [hrev55551] - https://git.haiku-os.org/haiku/log/?qt=range&q=a139e89af2d0+%5Ec224d63cacbe
<nekobot> [haiku/haiku] a139e89af2d0 - arm64: Add build-packages synced with server
x10z has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
robobox has quit [Ping timeout: 480 seconds]
<mmu_man> The Jitsi Meet channel is open btw: https://visio2.triplea.fr:4433/Haiku
NaGERST has quit [Quit: KVIrc 5.0.1 Aria http://www.kvirc.net/]
DKnoto has quit [Ping timeout: 480 seconds]
Sikosis has joined #haiku
<jt15s[m]> fne0003: Yeah, I sent all of the designs over to Freewear and we're still waiting on them - they've handled a couple of big conferences over the last few months so they're still swamped with work
<jt15s[m]> Hopefully we'll get the store open soon though
macdude22 has quit [Remote host closed the connection]
DKnoto has joined #haiku
Vidrep_64 has joined #haiku
<Vidrep_64> Hi
<Vidrep_64> waddlesplash, what was it you wanted me to test?
bitigchi has joined #haiku
Huggy has quit [Quit: Textual IRC Client: www.textualapp.com]
<mmu_man> waddlesplash: gee, some are quire grilled on lobst.er :)
<mmu_man> like, saying a private company wants to keep its monopoly = ssaying they want to create a dictatorship
<mmu_man> lol
<jt15s[m]> mmu_man: Maybe post it on SlashDot too? (If you have an account there, that is)
<mmu_man> I do but not sure I can still use it, it was linked to my engineering school mail
<mmu_man> years since I logged in
<mmu_man> oh no it's actually on my current mail, cool
<mmu_man> feels weird seeing this site after these years
<waddlesplash> Vidrep_64: it's now in master, x512[m] tested it and said it worked
<waddlesplash> sojust keep an eye over the next few days that you don't suddenly revert to framebuffer driver and all should be well
tbcr has quit [Quit: WeeChat 2.8]
Forza has quit [Read error: Connection reset by peer]
<nekobot> [haiku/haiku] waddlesplash pushed 6 commits to master [hrev55552] - https://git.haiku-os.org/haiku/log/?qt=range&q=db2ce6f9ef10+%5Ea139e89af2d0
<nekobot> [haiku/haiku] 034d50061034 - freebsd compat: Updates and additions for a newer iflib.
<nekobot> [haiku/haiku] b14f1ca97c12 - freebsd_iflib: Upgrade to that of FreeBSD 13.
<nekobot> [haiku/haiku] 2155cf671f0a - freebsd_network: Add new APIs used by FreeBSD 13 drivers.
<nekobot> [haiku/haiku] 047ebd5ac786 - atheros813x, broadcom570x, rtl81xx: Upgrade to FreeBSD 13.
Forza has joined #haiku
<nekobot> [haiku/haiku] 82046b272c8e - freebsd_network: Add pci_msix_table_bar().
<nekobot> [haiku/haiku] db2ce6f9ef10 - ipro1000: Upgrade to FreeBSD 13.
Vidrep_64 has quit [Quit: Vision[]: i've been blurred!]
HaikuUser has joined #haiku
<mmu_man> jt15s[m]: submitted, let's see if it gets published
<jt15s[m]> Ok
HaikuUser has quit []
x10z has joined #haiku