skept
|
4 years ago
|
on: Firefox 95 Released
I'm still rooting for Firefox but the only thing stopping me from switching to it as my daily browser is that it can't do multi-language spellcheck [0]. Chromium-based browsers have been supporting this for years now.
[0] https://bugzilla.mozilla.org/show_bug.cgi?id=1402822
skept
|
5 years ago
|
on: 'Economic disaster': Samsung's Austin fab still quiet 3 weeks after Texas freeze
skept
|
5 years ago
|
on: Signal Is Back
If you're still having delivery issues in any of your private conversations try "reset secure session" from the chat menu. It worked for me with a couple of my contacts.
skept
|
5 years ago
|
on: Amazon disallows pointing out paid reviews
I had a very similar experience last month. I ordered this toaster[1]. When I received it I noticed that in their user manual they were offering a "gift" in return for an Amazon review. Although to be fair they didn't explicitly demand that the review had to be positive. I submitted this 4-star review [2] to Amazon:
I received the toaster not too long ago. It looks just like in the advertised pictures and works fine. But the language on the last page of the user manual (see picture) makes it clear that LOFTER is offering customers a "gift" in return for leaving a review. Perhaps they're within their right to do that but it makes me not trust the rest of the reviews on this product.
A few days later I got an email from Amazon identical to the one in the submitted blog post[3]. I've stopped trusting positive reviews on Amazon. These days I only look at the negative reviews to see if there's a consistent complaint about the product.
[1] www.amazon.com/dp/B07S3TXD9H/
[2] https://cutt.ly/lhLZQ5o
[3] https://cutt.ly/JhLZTjZ
skept
|
5 years ago
|
on: Apple unveils M1, its first system-on-a-chip for portable Mac computers
That's 16GB of DRAM. Caches are SRAM, which has a very different set of design tradeoffs. SRAM cells use more transistors so they can't be packed as tightly as DRAM.
skept
|
5 years ago
|
on: Guide to Notion Landing Pages
For a basic company wiki Nuclino is another option. It doesn't have all the features Notion does, but I loved the incredibly fast page loads and search. Notion feels pretty sluggish by comparison.
skept
|
6 years ago
|
on: Help the Graphics team track down an interesting WebRender bug
Me too. I've seen it happen on more than a couple of occasions while visiting Trello.com and YouTube.com. Firefox isn't my primary browser, partly for this reason.
MBP 2013 with integrated graphics, running Mojave and the latest stable public release of Firefox. I haven't messed with about:config.
skept
|
6 years ago
|
on: Progressive React
It's crashing Samsung Internet on my Pixel 3.
skept
|
6 years ago
|
on: Poetry – Dependency Management for Python – v1.0
skept
|
6 years ago
|
on: Rust 1.37.0
Python is over 20 years old and got async/await only 4 years ago. I think most people would still consider Python a fairly stable language.
skept
|
7 years ago
|
on: What Happens Now That China Won't Take U.S. Recycling
For (2) the tax should also be based on the biodegradability of the materials.
skept
|
9 years ago
|
on: President Obama's International Visits from 2009 to 2016
Hope this isn't too off-topic, but if you like this and want to create a similar map of your own international/domestic flights you can do that here:
https://skyhops.com/Disclaimer: personal side project
skept
|
9 years ago
|
on: Show HN: Top books mentioned in comments on Hacker News
You can rank by upvotes and use karma as the tiebreaker.
skept
|
10 years ago
|
on: Pylsy: Python library to represent tabular data in ASCII tables
skept
|
13 years ago
|
on: The iPhone 5's A6 SoC: Not A15 or A9, a Custom Apple Core Instead
Dynamic power is quadratic with voltage and is work-load dependent, i.e P = c * AC capacitance * Freq * V^2. Static (i.e. leakage) power has an exponential component (P = AVe^(k*V)), although k is typically pretty small. I'm not sure about the static vs. dynamic power breakdown of Apple's designs.
skept
|
14 years ago
|
on: Bertrand Russell’s 10 Commandments for Teachers
Titling this Russel's "10 commandments for teachers" is very misleading. He included these under the title "A Liberal Decalogue" [ * ] in his autobiography and as far as I can tell there's nothing to suggest that he was addressing them to teachers in particular.
* http://www.panarchy.org/russell/decalogue.1951.html
skept
|
14 years ago
|
on: Fedora 16: Linux home for lost Ubuntu GNOMEs
On OSX you can use Cmd+` to switch between the windows of the active app. The Cmd+Tab behavior on OSX was annoying to me too when I first started using a Mac but now that I'm used to the Cmd+Tab and Cmd+` combo I actually prefer it to the way Alt+Tab works in Windows.
skept
|
14 years ago
|
on: Django Advice
Thanks for that tip. What I'm really curious about though is if there's a way to set PyCharm's Python interpreter to something not on the local host (e.g. the Python interpreter on the Vagrant VM). I'd be surprised if this turned out to be possible but thought it wouldn't hurt to ask.
Edit: I just found out about the remote debugging feature in PyCharm which may actually do what I want:
http://blogs.jetbrains.com/pycharm/2010/12/python-remote-deb...
skept
|
14 years ago
|
on: Django Advice
Vagrant looks very interesting. For writing code I prefer Vim but I also use PyCharm on OSX mainly for its excellent debugger and code browser. Does anyone know if there's a way to get PyCharm or perhaps other IDEs (running on OSX) to run the Django dev server through Vagrant?
skept
|
15 years ago
|
on: No, shut up. What statistical programming languages can learn from Dropbox.
There's a nice NumPy-based Python package called Tabular (
http://www.parsemydata.com/tabular/index.html) that makes this super easy:
import numpy as np
import tabular
# CSV with Region, City and Sales columns
data = tabular.tabarray(SVfile = 'data.csv')
# Calculate the total sales within each region
summary = data.aggregate(On = ['Region'], AggFuncDict = {'Sales':np.sum}, AggFunc = len)
summary.saveSV('summary.csv')
[0] https://bugzilla.mozilla.org/show_bug.cgi?id=1402822