HN user

chemodax

190 karma
Posts30
Comments31
View on HN
www.virtualizationhowto.com 1mo ago

Docker on Windows Server Felt Easier After I Tried VisualDock Server

chemodax
11pts9
github.com 6mo ago

MySQL GitHub repository did not have commits for three months

chemodax
1pts1
www.theguardian.com 3y ago

Software firm WANdisco suspends shares amid ‘fraudulent irregularities’

chemodax
1pts0
www.nytimes.com 3y ago

U.S. Believes Ukrainians Were Behind an Assassination in Russia

chemodax
6pts0
www.consilium.europa.eu 4y ago

Digital finance: agreement reached on European crypto-assets regulation (MiCA)

chemodax
2pts0
www.nytimes.com 4y ago

House Passes Bill Urging Biden to Sell Seized Russian Yachts to Aid Ukraine

chemodax
1pts6
www.nasdaq.com 4y ago

Crypto exchange Binance limits services in Russia after EU sanctions

chemodax
1pts0
news.yahoo.com 4y ago

Ukraine strikes fuel depot in Russia's Belgorod

chemodax
9pts1
www.linkedin.com 4y ago

Russian War and the Cloud's Future

chemodax
3pts1
www.cisco.com 4y ago

Cisco stops all services in Russia and Belarus

chemodax
2pts2
blog.adobe.com 4y ago

Adobe stops all new sales in Russia

chemodax
3pts0
www.grammarly.com 4y ago

Grammarly has suspended service in Russia and Belarus

chemodax
10pts3
www.ben-evans.com 5y ago

Do Amazon ads bring in more cash than AWS?

chemodax
3pts0
www.theregister.com 5y ago

Apache foundation ousts TinkerPop project co-founder for tweets

chemodax
3pts0
www.techspot.com 5y ago

Google's 'Cloud Print' service is shutting down soon

chemodax
7pts4
www.ben-evans.com 5y ago

What Comes After Smartphones?

chemodax
41pts40
hackernoon.com 5y ago

Why I will not exercise my Gitlab stock options (2017)

chemodax
2pts0
support.microsoft.com 5y ago

Windows Update for the Removal of Adobe Flash Player

chemodax
18pts3
www.zdnet.com 5y ago

Microsoft will forcibly open some websites in Edge instead of Internet Explorer

chemodax
4pts2
www.fxsitecompat.dev 5y ago

Sunsetting FxSiteCompat

chemodax
1pts0
www.androidpolice.com 6y ago

Google wants Android to use regular Linux kernel

chemodax
4pts0
www.voxday.net 6y ago

SJW attack survival guide (2015) [pdf]

chemodax
6pts5
www.engadget.com 6y ago

Google faces scrutiny from Congress, DOJ over plans to encrypt DNS

chemodax
7pts1
visualstudioextensions.vlasovstudio.com 7y ago

Extensions in the main Visual Studio 2019 menu

chemodax
1pts1
www.osr.com 7y ago

Withdrawing from the Microsoft MVP Program

chemodax
226pts75
www.windowscentral.com 7y ago

Why Microsoft's new Edge browser could be a true Google Chrome rival

chemodax
9pts6
www.zdnet.com 7y ago

Browser wars: High price, huge rewards (2003)

chemodax
1pts1
www.zdnet.com 8y ago

​Samsung develops 'graphene ball' to speed up battery charging

chemodax
2pts0
theoutline.com 8y ago

What isn’t Telegram saying about its connections to the Kremlin

chemodax
3pts0
github.com 9y ago

GVFS: Is It Extend,Embrace and Extinguish Again?

chemodax
2pts0

As far I remember NAND/NOR memory (used for SSD) is very slow to *erase*. The erase operation can be performed only by big chunks, requires higher voltage etc.

SSD vendors circumvent this by adding several layers of write buffers to achieve good test results.

You should just ask for refund. I've the similar story, Uber suggested credit. But immediately issued refund once I declined credit and asked to refund money back to my credit card.

Nginx 1.15.9 7 years ago

Most likely because of Windows Server 2008: they are almost the same.

My favorite quote: [[[ Greg Sullivan, lead product manager for Microsoft's Windows client division, says that the computing community as a whole has benefited from the Web's standardization around Internet Explorer. Competing platforms would have meant that developers would have had to duplicate their efforts more often, he said.

"There is benefit to everybody who's involved," Sullivan said. "In general, a standard is very useful, whether it's de facto or du jour. It enables a level of consistency and a level of investment and minimizes some of the redundancy that can occur." ]]]

In fact .zip file contains file header information twice: before every compressed file (local file header) and at the end of the .zip file (central directory). It's possible to omit file size in local file header, but most most compressing utilities doesn't use this option. So most .zip files could be extracted without seeking to the end.

Sure, package maintainers may backport fixes to their old versions. But they need to fully understand all upstream source code and follow all commits. Otherwise they can miss important fixes: following only security fixes for supported branches is not enough. Sometimes project developers fixes bug/security problem in the code, but doesn't flag it as CVE because current code usage doesn't trigger it. But code in old branch could.

Files Are Hard 11 years ago

In general this approach should work fine, but devil is in detail: 1. You have to flush change to temporary file before move because otherwise you may get empty file: OS may reorder move and write operations 2. After move you have to flush parent directory of destination file on Posix. Windows have special flag for MoveFileEx() to ensure that operation is done or you have to call FlushFileBuffers() for destination file.

Linked paper mention the many popular programs forgets about (1).