What Are You Doing Right Now
-
I have ERX units out at user houses. THey have been workign fine.
-
@JaredBusch I have a couple at friends and family as well. No issues. The one at the office is used quite heavily. It shouldn't be having this issue, but like I said. It's happened more than once. Wish I could reset remotely.
-
@Texkonc said in What Are You Doing Right Now:
Its going to be a toasty weekend. If I can get my wheel back from getting trued I can get on the bike very early in the morning.
Its not even August yet.Yeah. We are under a heat advisory
-
Currently syncing our 50GB+ Arma 3 mod repository in a test run. Wrote a zsync-based client for our ~300 active users to allow them to only download changed blocks instead of downloading whole files. Some of them are pretty big, like 500MB+ for maps.
-
@scottalanmiller said in What Are You Doing Right Now:
@Texkonc said in What Are You Doing Right Now:
Its going to be a toasty weekend. If I can get my wheel back from getting trued I can get on the bike very early in the morning.
Its not even August yet.Yeah. We are under a heat advisory
If your ac goes out, call me. @Dominica @scottalanmiller
-
Hopefully all of the issues this week made them work extra hard to get ready to keep us cool this weekend. Fingers crossed.
-
Fixing the power does not fix the AC in that home.
-
@Texkonc said in What Are You Doing Right Now:
Fixing the power does not fix the AC in that home.
Oh it works fine now. We fixed it last winter. And added another AC unit in the office to back it up, too.
-
Just had a pub dinner and about to head off to watch Pirates of the Caribbean: Dead Men Tell No Tales. With the wife, brother in law and misses
-
@hobbit666 said in What Are You Doing Right Now:
Just had a pub dinner and about to head off to watch Pirates of the Caribbean: Dead Men Tell No Tales. With the wife, brother in law and misses
Is that an old movie or a new one?
-
Newest one
-
@hobbit666 said in What Are You Doing Right Now:
Newest one
Wow, and still in theatres? I had no idea.
-
@scottalanmiller said in What Are You Doing Right Now:
WTF People. 13% This is SO basic and talked about SO often.
Well I got it wrong as I read wrong the part with "two dual-core CPUs" (No excuse anyway...)
-
@dbeato said in What Are You Doing Right Now:
@scottalanmiller said in What Are You Doing Right Now:
WTF People. 13% This is SO basic and talked about SO often.
Well I got it wrong as I read wrong the part with "two dual-core CPUs" (No excuse anyway...)
Fail
-
Heat Index is at 108F now. And the sun is not out, and we are ten degrees below our expected peak for the day!!
-
@scottalanmiller Yes...
-
@scottalanmiller said in What Are You Doing Right Now:
@hobbit666 said in What Are You Doing Right Now:
Newest one
Wow, and still in theatres? I had no idea.
It just came out.
-
@Texkonc said in What Are You Doing Right Now:
@scottalanmiller said in What Are You Doing Right Now:
@hobbit666 said in What Are You Doing Right Now:
Newest one
Wow, and still in theatres? I had no idea.
It just came out.
I'm so out of touch.
-
@thwr said in What Are You Doing Right Now:
Currently syncing our 50GB+ Arma 3 mod repository in a test run. Wrote a zsync-based client for our ~300 active users to allow them to only download changed blocks instead of downloading whole files. Some of them are pretty big, like 500MB+ for maps.
I'd be very interested in that.
-
@coliver said in What Are You Doing Right Now:
@thwr said in What Are You Doing Right Now:
Currently syncing our 50GB+ Arma 3 mod repository in a test run. Wrote a zsync-based client for our ~300 active users to allow them to only download changed blocks instead of downloading whole files. Some of them are pretty big, like 500MB+ for maps.
I'd be very interested in that.
That's actually pretty simple. Zsync (zsyncmake) uses the rsync algorithm to pre-calculate
kind of a map of blocks for a given file. That file will be placed on a webserver together with the actual data file.The client - which uses a zsync lib or executable - first downloads the zsync-file (the map) and then issues a series of HTTP Range-Requests to only download the changed blocks. Next step is the actual patching of the data file with the downloaded changes.
I'm afraid that the client itself is heavily customized for our infrastructure, but I could give you a few hints here and there if you like.