consto | 7 years ago | on: Mozilla is giving up on their IRC server
consto's comments
consto | 7 years ago | on: Lack of redundancies on Boeing 737 MAX baffles some involved in developing it
[0] https://en.m.wikipedia.org/wiki/British_Airways_Flight_9
consto | 7 years ago | on: A Design Flaw Behind MacBook Pro’s “Stage Light” Effect [video]
consto | 7 years ago | on: A Design Flaw Behind MacBook Pro’s “Stage Light” Effect [video]
Meanwhile the richest company in the world fails to acknowledge a significant design flaw in their expensive, "Pro" laptop. Really, they should be willing, if not eager to replace the screens in every affected laptop free of charge. A laptop that fails after opening and closing the lid for a year or two is defective. There is should be no doubt about that.
I don't know how the laws stand in the US (it probably varies state by state), but in the UK with the 2015 Consumer Rights Act, customers have potentially up to five or six years to make a claim irrespective of warranty: https://www.which.co.uk/consumer-rights/regulation/consumer-...
consto | 7 years ago | on: Windows Sandbox
Unless I am mistaken, I don't think this is the case for iOS, Android, ChromeOS, FirefoxOS, and many game consoles.
This is really just a problem with desktop and server operating systems, not with operating systems as a whole. It's also getting bettwe with package managers, the Windows Store, and UAC.
consto | 7 years ago | on: Should you use www or not in your domain? (2017)
consto | 7 years ago | on: Using Dark Mode in CSS with MacOS Mojave
consto | 7 years ago | on: Does YouTube Underpay Artists 13B a Year?
I am not saying that Google shouldn't pay more, I am not saying that Google says less. But do a quick sanity check before posting silly numbers in a blog post. Or better yet, provide solid evidence to back up your assertions.
consto | 7 years ago | on: Brave 0.55 released
consto | 7 years ago | on: Square Terminal
consto | 7 years ago | on: Microsoft suspends Windows 10 update, citing data loss reports
consto | 7 years ago | on: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
I have a question, or rather a request. As a long term Sublime Text user I like to hide the menu bar which you can't seem to do in Sublime Merge. Would you consider adding this in a future release?
consto | 7 years ago | on: Show HN: I made a privacy-first minimalist Google Analytics
I just have a quick question. What subset of the javascript implementation does the tracking pixel provide? If all that is missing is screen size, I might just choose that to avoid running third party code. For performance, I combine, minify, and embed all scripts and styles into each page which lets me acheive perfect scores in the Chrome Auditor.
consto | 7 years ago | on: Volunteers scour drone footage in search for woman who went missing on hike
consto | 7 years ago | on: Apple and Google Face Growing Revolt Over App Store ‘Tax’
consto | 7 years ago | on: Stockholm’s deepest subway station is also an ecological wonder
consto | 7 years ago | on: Oracle Java SE 8 Release Updates
consto | 7 years ago | on: Stockholm’s deepest subway station is also an ecological wonder
The station itself may be the deepest, but it isn't the busiest, and if you look at a map it makes sense. It's a single stop away from T-Centralan where all of the lines converge and it is the last station on the line. Leaving the station you emerge in a garden near the centre of the city, but there are other lines that will probably get most closer.
I went there in the middle of summer and honestly, the entire city didn't feel that busy in the same way London feels. I wouldn't be surprised if many locals are holidaying elsewhere, and Stockholm while a capital city, isn't at the top of the list of city destinations.
Also, shameless self-promotion and photos, but a friend challenged me to blog my trip and post online, click here for photos: https://consto.uk/2018/07/16/interrailing-into-stockholm-day...
consto | 7 years ago | on: Electric scooters are illegal in the UK because of 1835 law
consto | 7 years ago | on: Show HN: A Chrome extension that extracts used CSS and combines it into one file
Your problem was not that your CSS was 340 KBytes, but the simple fact you were using 5 CSS frameworks. And if you start removing unused styles at random, any time you want to work on the site and add features you may encounter edge cases where the style you want to use has been removed. And, if your CSS is used on multiple pages with different layouts, it looks like you will need to manually browse each one and merge the results.
However, this is not to say that merging and compressing stylesheets is bad. If you do so then you can embed the style in the page to remove a render blocking resource and speed up your site. Then you can repeat the same process with Javascript.