As far as Nightly goes, I'd always imagine a debug/testing build would use more RAM by a fair margin. elsewise, I'd say, try creating a new FF profile, unfortunately afaik older profiles can still jank up the browser a…
Please note this comment isn't specifically to you, but, I guess more to any mozzarellian that comes across this comment - - - for other reasons I wanna comment on the "seems pretty reasonable" bit "In this day and age"…
can't you install umatrix/ublockO in mobile FF?
That's all fine and dandy for the desktop case. But its a dhcp server, network admins would be expected to touch config files, and the interface for a DHCP server really can't be much worse than the GUI version that…
"You should be able to run a command that doesn’t use the network, knowing that it won’t open a network port." Is the reader supposed to stop reading there? Because they must be using a different dotnet than everyone…
> Let me put this bluntly: If [weakening of encryption] is what the government winds up suggesting, then by all means hand me a bullhorn [...] well how else would you interpret the statement that Australian law…
that is referring to the daemons if I'm not mistaken
If you don't mind me asking, how are you getting the data? just site scraping each source?
and then suddenly, your signature goes from `f()` to `f(args,*kwargs)`, you lose all of make_money's documentation too
Can we vote on the governance of facebook and google like we do with the government? (where every person's vote is equal) if so, where can I register to freely vote edit: since it doesn't seem clear, my comment is…
with several browsers happy to automatically download whatever is provided to them, making a user download a libblahblah.so is relatively easy, and unless the user was aware of the ramifications of just even having such…
Well its "We have made new TPUs for Google Cloud and we probs won't sell them!" Google decides if you are part of the everyone included in their AI for everyone
you can postpone general updates while still having critical/security updates go through at the normal pace And, shouldn't a workplace be setup for re-imaging if updates go wrong? I know its easy to just store files in…
The thing is, Niantic learnt one bad thing from Google: The habit of near-zero community interaction and support. The player base for Pokemon Go felt very frustrated at multiple times (especially anyone who had a rooted…
I don't think anyone really is angered by a modular system, its more the needing-to-pay-attention-to-every-little-bit (especially when those bits are mixed up in really poor naming, corporate speak, etc) is the more…
I ain't too sure, but https://www.reddit.com/r/programming/comments/5mflek/alacrit... The Terminology (another light-weight term, with memory goals, that has scrollback) developer's comments are here
As far as Alacritty is concerned, modularity can easily come with a cost. once you add in e.g. tmux for multiplexing and scrollback, then you are bottlenecked at tmux's speeds, as opposed to the terminal emulator's…
Yes, those are threads when handled by the OS / greenthreads when handled by the program. a program with threads can support multiple requests simultaneously. a program with green threads can support multiple requests…
https://magic.io/blog/uvloop-blazing-fast-python-networking/... from the makers of uvloop (for a toy example) it seems the main bottleneck when using aiohttp is aiohttp itself, which practically makes the use of uvloop…
Well you can do all of that sync, can't you? def on_connection: send(headers) send(start of page) for row in db: send(row) send(footer) will have the exact same effect as what you said (not like that applies regardless,…
> (At Project ORB, we are working to build a platform for blockchain games which incorporate Counterparty tokens. In addition to rarepepe, [..]" So I guess they are trying to get more people to focus on this silly thing…
out now?
each time I look at google's 3d representations for things, I really wonder why they don't do manual touchups for certain places I mean, if you are including the Eiffel Tower in the intro pages, could both make it look…
> you only have to touch your stylesheets instead of manipulating both the stylesheets and HTML. Well isn't the point here that you'd only have to modify the HTML, leaving the CSS alone for the most part?
having "[...] open source [...]" in your tag line, for a closed source project, is a bit disingenuous. "Project A has beneficial aspect X, we forked project A's work and removed X, but we just thought we should mention…
As far as Nightly goes, I'd always imagine a debug/testing build would use more RAM by a fair margin. elsewise, I'd say, try creating a new FF profile, unfortunately afaik older profiles can still jank up the browser a…
Please note this comment isn't specifically to you, but, I guess more to any mozzarellian that comes across this comment - - - for other reasons I wanna comment on the "seems pretty reasonable" bit "In this day and age"…
can't you install umatrix/ublockO in mobile FF?
That's all fine and dandy for the desktop case. But its a dhcp server, network admins would be expected to touch config files, and the interface for a DHCP server really can't be much worse than the GUI version that…
"You should be able to run a command that doesn’t use the network, knowing that it won’t open a network port." Is the reader supposed to stop reading there? Because they must be using a different dotnet than everyone…
> Let me put this bluntly: If [weakening of encryption] is what the government winds up suggesting, then by all means hand me a bullhorn [...] well how else would you interpret the statement that Australian law…
that is referring to the daemons if I'm not mistaken
If you don't mind me asking, how are you getting the data? just site scraping each source?
and then suddenly, your signature goes from `f()` to `f(args,*kwargs)`, you lose all of make_money's documentation too
Can we vote on the governance of facebook and google like we do with the government? (where every person's vote is equal) if so, where can I register to freely vote edit: since it doesn't seem clear, my comment is…
with several browsers happy to automatically download whatever is provided to them, making a user download a libblahblah.so is relatively easy, and unless the user was aware of the ramifications of just even having such…
Well its "We have made new TPUs for Google Cloud and we probs won't sell them!" Google decides if you are part of the everyone included in their AI for everyone
you can postpone general updates while still having critical/security updates go through at the normal pace And, shouldn't a workplace be setup for re-imaging if updates go wrong? I know its easy to just store files in…
The thing is, Niantic learnt one bad thing from Google: The habit of near-zero community interaction and support. The player base for Pokemon Go felt very frustrated at multiple times (especially anyone who had a rooted…
I don't think anyone really is angered by a modular system, its more the needing-to-pay-attention-to-every-little-bit (especially when those bits are mixed up in really poor naming, corporate speak, etc) is the more…
I ain't too sure, but https://www.reddit.com/r/programming/comments/5mflek/alacrit... The Terminology (another light-weight term, with memory goals, that has scrollback) developer's comments are here
As far as Alacritty is concerned, modularity can easily come with a cost. once you add in e.g. tmux for multiplexing and scrollback, then you are bottlenecked at tmux's speeds, as opposed to the terminal emulator's…
Yes, those are threads when handled by the OS / greenthreads when handled by the program. a program with threads can support multiple requests simultaneously. a program with green threads can support multiple requests…
https://magic.io/blog/uvloop-blazing-fast-python-networking/... from the makers of uvloop (for a toy example) it seems the main bottleneck when using aiohttp is aiohttp itself, which practically makes the use of uvloop…
Well you can do all of that sync, can't you? def on_connection: send(headers) send(start of page) for row in db: send(row) send(footer) will have the exact same effect as what you said (not like that applies regardless,…
> (At Project ORB, we are working to build a platform for blockchain games which incorporate Counterparty tokens. In addition to rarepepe, [..]" So I guess they are trying to get more people to focus on this silly thing…
out now?
each time I look at google's 3d representations for things, I really wonder why they don't do manual touchups for certain places I mean, if you are including the Eiffel Tower in the intro pages, could both make it look…
> you only have to touch your stylesheets instead of manipulating both the stylesheets and HTML. Well isn't the point here that you'd only have to modify the HTML, leaving the CSS alone for the most part?
having "[...] open source [...]" in your tag line, for a closed source project, is a bit disingenuous. "Project A has beneficial aspect X, we forked project A's work and removed X, but we just thought we should mention…