AlwaysLivid 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
<jessicah> anything that causes some or all text to disappear is likely part of the same ticket/root cause
PacBilly has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
PacBilly has joined #haiku
freakazoid333 has quit [Read error: Connection reset by peer]
freakazoid333 has joined #haiku
mmu_man has quit [Ping timeout: 480 seconds]
dr_evil_ has joined #haiku
dr_evil has quit [Ping timeout: 480 seconds]
freakazoid333 has quit [Read error: Connection reset by peer]
freakazoid333 has joined #haiku
freakazoid333 has quit [Read error: Connection reset by peer]
freakazoid333 has joined #haiku
PacBilly has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
PacBilly has joined #haiku
qwebirc21824 has joined #haiku
qwebirc21824 has quit []
dcatt has joined #haiku
dcatt has quit []
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
AlaskanEmily has quit [Remote host closed the connection]
Begasus has joined #haiku
<Begasus> g'morning peeps
Begasus_32 has joined #haiku
<jeremyf[m]> Good morning Begasus
<Begasus> Good morning jeremyf[m]
_Dario_ has quit [Quit: Vision[0.10.3]: i've been blurred!]
PacBilly has quit [Quit: Textual IRC Client: www.textualapp.com]
<Begasus> bbl
jmairboeck has joined #haiku
gouchi has joined #haiku
mmu_man has joined #haiku
tuaris has quit [Remote host closed the connection]
mmu_man has quit [Ping timeout: 480 seconds]
Diver has quit [Quit: Leaving.]
Diver has joined #haiku
Diver is now known as Diver
<jeremyf[m]> There are so many tickets for hda sound driver already, must I open one more for my specific hardware?
countryboy has joined #haiku
AlwaysLivid has joined #haiku
<countryboy> hullo
<AlwaysLivid> hey
<PulkoMandy> jeremyf[m], I'd say yes, it's hard to know if multiple tickets are the same problem, until we fix a bug and suddenly things start working for a dozen people
<PulkoMandy> it's a lot easier to close a ticket as duplicate, than untangle discussion about two problems that turn out to be unrelated, but were initially put in the same ticker
countryboy has quit [Quit: countryboy]
<rennj> hda i thought people used opensound driver for that
<rennj> what i use for sound on vmware haiku vm
<PulkoMandy> I suggested just dropping our non-working hda driver and just shipping opensound by default but some developers voted against it
<PulkoMandy> maybe I should suggest it again
<rennj> well i been using opensound since day1 with vmware
<jeremyf[m]> PulkoMandy: okay, thanks, I'll create a ticket with as many infos as possible.
<PulkoMandy> yes I'm using opensound too, hda driver doesn't work for me
<jeremyf[m]> It seems OpenSound don't work with last revs for me
countryboy has joined #haiku
<countryboy> dedicated to AlwaysLivid : https://youtu.be/-OyXpzd6WBk
gouchi has quit [Remote host closed the connection]
countryboy has quit [Quit: countryboy]
<Coldfirex> Finally was able to cubmit my first "patch"!
<Coldfirex> The learning curve is huge with all of this stuff
countryboy has joined #haiku
<countryboy> electronic mail = a letter that travels on the internet
<countryboy> a txt file ... ;-)
<rennj> when txt was king
<countryboy> rennj: also html is a txt file
<rennj> html markedup txt was the beginning of the downfall
<countryboy> tell me, rennj ...
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
countryboy has quit [Quit: countryboy]
freakazoid333 has quit [Read error: Connection reset by peer]
<rennj> ibm gml/sgml or att unix troff who to blame
<rennj> late 60's early 70's.
<rennj> roff printed the man pages for Versions 1 through 3 of Unix, and when the Bell Labs patent department began using it, it became the first Unix application with an outside client. ... w00t typesetting.
<rennj> math needing something like TeX soon to follow
dcatt has joined #haiku
gouchi has joined #haiku
<rennj> “If we hit that bullseye, the rest of the dominoes should fall like a house of cards. Checkmate”
ClaudioM has joined #haiku
Emrys has joined #haiku
<Coldfirex> @Pulokmandy thanks for approving my first change!
<Coldfirex> *PulkoMandy
<Coldfirex> If I had another change for the same file, do I just rerun 'git pull --rebase' now, make the change, and submit again?
<PulkoMandy> yes
<PulkoMandy> you can also submit multiple changes in a single push too
<Coldfirex> ok thanks. Trying to take it slow and take notes
<PulkoMandy> https://pulkomandy.tk/stats is updated with the latest contribution stats, in case anyone wants to look at useless rankings and nice graphs :)
pvalue has joined #haiku
<Coldfirex> Nice. Lots of late night coders
freakazoid333 has joined #haiku
tqh has joined #haiku
<Coldfirex> PulkoMandy: trying to fix my mistakes you pointed out. I am getting this when trying to cherry pick the changes and resubmit. Ideas? https://imgur.com/a/lCbvV9v
<Coldfirex> I could abandon the changes completely, and resubmit a new one with the correct change if thats easier
<PulkoMandy> why do you need to cherry-pick? don't you already have the change locally?
<PulkoMandy> you never need to abandon changes on gerrit, what you can do if you're lost with git locally is make a new commit, and copy paste the change id line from the previous commit message
<PulkoMandy> that's all Gerrit uses to identify that the new commit is meant to replace the previous one
<Coldfirex> I was following out guide: "Single-commit change To update an existing commit, you need to download it locally, modify it, and send it again. When your change consists of a single commit, you can cherry-pick it."
<PulkoMandy> yes, but if you already have it locally you don't need to re-download it
<PulkoMandy> that's what your cherry pick attempt told you: there is nothing to get in the commit
<PulkoMandy> so you can do git cherry-pick --skip as instructed
<PulkoMandy> and then your git add / git commit --amend should work
<Coldfirex> Understood. So to resolve, skip cherry pick, and then rerun that last command in the image?
mmu_man has joined #haiku
<PulkoMandy> yes
<Coldfirex> Done, but I dont see the updates within Gerrit
<PulkoMandy> you need to push it there: git push origin HEAD:refs/for/master
<Coldfirex> duh, done. thanks
<Coldfirex> hmm, the updated patchset in gerrit looks exactly the same
<Coldfirex> fixed
ClaudioM has quit [Quit: leaving]
bbjimmy1 has quit [Ping timeout: 480 seconds]
vezhlys has joined #haiku
Begasus_32 has quit [Quit: Vision[0.10.3]: Gone to the dogs!]
Skipp_OSX has joined #haiku
<Skipp_OSX> iisi you there?
<iisi> Skipp_OSX: J'arrive!
freakazoid333 has quit [Read error: Connection reset by peer]
<iisi> This about the invisi-fonts Heisenbug?
flag has joined #haiku
freakazoid333 has joined #haiku
Vidrep_64 has joined #haiku
freakazoid333 has quit [Read error: Connection reset by peer]
freakazoid333 has joined #haiku
AGMS-BeOS has joined #haiku
AGMS-BeOS is now known as AGMS
<Skipp_OSX> yessir
<Skipp_OSX> more progress...
<Skipp_OSX> it's not directly related to rename after all... I'm getting closer but still there is bug :/
pvalue has quit []
rennj has quit [Quit: Leaving]
rennj has joined #haiku
* iisi ponders trying to patch FreeType and Apperance to allow more glyph hinting options, including using a least 1/3rd pixel precision in horizontal calculations
<iisi> Probably crazy-talk, but /might/ help with the variable fonts incorrectly changing widths.
<Skipp_OSX> well I've kind of give up on the off-by-one because I can't figure it out at all font sizes
<Skipp_OSX> now I just want to get the invalidation to work...
nick8325 has quit [Quit: Leaving.]
<Begasus> g'night peeps
Begasus has quit [Quit: Ik ga weg]
<rennj> perhaps a nice fixed font/monospace would be easier
Emrys has quit [Quit: Page closed]
<PulkoMandy> updated stats for haikuports too: http://pulkomandy.tk/stats_hp
freakazoid333 has quit [Read error: Connection reset by peer]
jmairboeck has quit [Quit: Konversation terminated!]
dcatt has quit [Ping timeout: 480 seconds]
Vidrep_64 has quit [Quit: Vision[0.10.3]: i've been blurred!]
<Skipp_OSX> ok I got it!
<Skipp_OSX> I was almost sure it was a calculation mismatch somewhere and I finally tracked it down. Text top can go above icon top at larger font sizes.
<Skipp_OSX> I am hoping to get this in before beta3 :/
<iisi> Nice.
gouchi has quit [Remote host closed the connection]
<Skipp_OSX> can you test for me?
<Skipp_OSX> just see if bug happens on your system
<Skipp_OSX> all you gotta do is set your font size to 21pt, restart Tracker, and go into mini-icon mode. Then highlight the text and unhighlight to trigger bug.
<Skipp_OSX> easier to see in a window than on Desktop
<Skipp_OSX> you can restart Tracker by checking the first checkbox of second tab in Locale prefs
<Skipp_OSX> (to get the font size change to come through)
<Skipp_OSX> it will leave a black (highlight color) rectangle behind where the rects don't match
tqh has quit [Quit: Leaving]
HaikuUser has joined #haiku
HaikuUser has quit []
tuaris has joined #haiku
freakazoid333 has joined #haiku
vezhlys has quit [Quit: Leaving]
ClaudioM has joined #haiku
AGMS has quit [Quit: Vision[0.9.6-0203]: i've been blurred!]
_Dario_ has joined #haiku
cocobean has joined #haiku
<cocobean> GMail working somewhat with Webkit 612.1.21 for 20 emails.... so better than the old version... Going to re-review with te latest Haiku patches and Webkit 612.1.24.
<cocobean> Google maps still partially loads images with Web+.
cocobean has quit [Quit: Page closed]
<Coldfirex> cocobean: wasnt maps the too many ports issue?
AlwaysLivid has quit [Remote host closed the connection]
freakazoid333 has quit [Remote host closed the connection]
freakazoid333 has joined #haiku
freakazoid333 has quit [Remote host closed the connection]
freakazoid333 has joined #haiku
freakazoid333 has quit [Read error: Connection reset by peer]
freakazoid333 has joined #haiku
freakazoid333 has quit [Read error: Connection reset by peer]
freakazoid333 has joined #haiku
cocobean has joined #haiku
<cocobean> Seems the case with app_server... looking into BBuffer I/O resourcing with video streaming too...