rofl0r
rofl0r
i'd look for DNS requests accompanying your website accesses. if there are none, proxychains works as expected. btw if you're using http proxies you don't control, they may add x-forwarded-for...
well if that is so then chromium (which i dont use nor have) probably crafts its own DNS UDP packets and does the lookups without involving libc, i.o.w. it can't...
seems unlikely. proxychains only sees either a connection attempt, or a DNS resolve attempt. even if we would intercept writes to the TCP socket (with the intention of filtering out...
this mechanism appears to be very complex. if someone is interested in implementing this, m$ provides some example code and test data here: https://learn.microsoft.com/en-us/previous-versions/ms995331(v=msdn.10)
it's hard to develop stuff for systems you don't have access to. if you can describe how to setup a test environment, it's more likely someone interested shows up and...
afaik SDL already spawns a thread for the audio playback, thus the callback dance in my sdlwriter backend. i personally found it much nicer to work with the synchronous API...
nice! btw, i realized after filing this here that the file which threw the bus error had actually been overwritten with the textual output of minimidi, so the file format...
in case it helps, i've written a quite comprehensive article about supporting cross-compiling https://sabotage-linux.neocities.org/blog/5/ as for makesignum, maybe it could just be executed on yash startup instead of build time....
OFF_SMOOTH is kind of a misnomer. OFF is generally associated with "offset". a more suiting term would be DISABLE. but i'm generally not a friend of littering the code with...
does this really solve the issue ? these bindings are SDL_Key specific, but on portable devices you usually get input from SDL_Joystick events