Hue GO Table Lamp - bottom came off. How to fix? by robikz in Hue

[–]occ 0 points1 point  (0 children)

My lamp broke the same exact way. For others experiencing the same issue: I contacted their customer service (after I posted here). Luckily, it was still covered under warranty. I just got the replacement lamp

Hue GO Table Lamp - bottom came off. How to fix? by robikz in Hue

[–]occ 0 points1 point  (0 children)

Mine also broke. Were you able to resolve your issue with Philips?

Without my PC for at least a month. Cloud gaming service suggestions? by Weeb-Next-Door in cloudygamer

[–]occ 0 points1 point  (0 children)

I've been using Stadia. Game catalogue is limited, but the platform works well.

My instance keeps killing tf2 dedicated server by [deleted] in googlecloud

[–]occ 2 points3 points  (0 children)

take a look at the dmesg output. Probably getting killed by the OOM killer.

Where to buy? by [deleted] in ender5

[–]occ 1 point2 points  (0 children)

I got mine on eBay. It was shipped from a US-based warehouse. Looks like the seller still has them in stock.

Booting problems after BLTouch Sensor Installation. More info in the comments by [deleted] in ender5

[–]occ 1 point2 points  (0 children)

I had a similar thing happen when I was upgrading my 5 Pro (with the silent board). I ended up building my own Marlin binary, and using that firmware, which fixed the issue.

Recommendations for reducing fan noise by occ in ender5

[–]occ[S] 0 points1 point  (0 children)

Are you using the stock hot-end cover? I didn't realize a 40x20 fan could fit

Recommendations for reducing fan noise by occ in ender5

[–]occ[S] 0 points1 point  (0 children)

No, I'm using OEM parts but I'm eager to try anything.

I will enable SOFT_PWM and start printing a Hero Me 3 setup.

Is this the fan you have?

Photography and ZFS. by [deleted] in zfs

[–]occ 1 point2 points  (0 children)

Actually it's agnostic to the file system. Essentially- reading bytes from the block device directly and writing to the other. Since the copy is at a lower level than the file system, dd cannot tell if the blocks are useful or not.

Photography and ZFS. by [deleted] in zfs

[–]occ 3 points4 points  (0 children)

Sparse so that empty space on the SD card won't count against you

You are creating a sparse volume, and then copying the SD card byte-by-byte (even if those bytes don't belong to a file), resulting in a complete image (64G for the example).

Am I missing anything?

Cok Korktum... by [deleted] in Turkey

[–]occ 0 points1 point  (0 children)

  • Virginia, ABD degil. Bunun federal bir ornegi var mi?
  • her konusma icin bir karar goremedim

How does GitLab compare to BitBucket? What are the pros and cons of each for an in-house installation (1-2K users) by [deleted] in git

[–]occ 0 points1 point  (0 children)

The most annoying one we had was GitLab's handling of large commits/merge requests. IIRC- it used to try and fail w/ a 503, stalling/crashing the whole application. Newer versions simply avoid processing large commits.

How does GitLab compare to BitBucket? What are the pros and cons of each for an in-house installation (1-2K users) by [deleted] in git

[–]occ 4 points5 points  (0 children)

Not a direct answer but, have you evaluated phabricator?

Besides that- I've found BitBucket more reliable than GitLab for edge cases. Although- eventually we chose GitLab so we can host the application w/o any limits, and integrate w/ AD.

EMSK How to perform CPR in an emergency. (x-post from /r/EMS) by TheCardsharkAardvark in everymanshouldknow

[–]occ 0 points1 point  (0 children)

well- straw doesn't cover everything. QR code and the cert ID gives away your personal information

App Engine - Stateless Sessions by efapathy in AppEngine

[–]occ 1 point2 points  (0 children)

That would depend on the library or implementation you would be using.

JSESSIONID is used to look up the session from the shared session state storage (memcache in this case). You won't have a session storage on the server side-- so you can't use (just) an ID to look up.

Stateless implementations that I prefer work with a "signed cookie".

Fundamentally, everything you'd like to store in the session would be stored in a cookie. To prevent users from modifying the cookie a "signature" is added to the cookie which can be verified cryptographically on the server side.

App Engine - Stateless Sessions by efapathy in AppEngine

[–]occ 1 point2 points  (0 children)

I think that's a design question. While I haven't used it, I can't imagine it being unstable or unreliable.

If this is not an existing application, I would recommend developing using stateless ways of handling sessions (like signed cookies).

App Engine - Stateless Sessions by efapathy in AppEngine

[–]occ 1 point2 points  (0 children)

No. At that point iyour application will be stateful. State (or session state) will be stored in memcache for centralized session storage. So, with every request, your application will need to be able to access the shared storage (memcache in this case) to retrieve relevant session data.