Search
A Committee of Celsius Creditors Objects to Celsius Selling Its Stablecoin Cache
29.10.2022
A committee of unsecured creditors stemming from the Celsius bankruptcy case has filed a motion with the court to stop the now-defunct crypto lender from selling the company’s stablecoin holdings. The written protest by the group of creditors against the sale follows objections from a slew...
How to Use window.crypto in Node.js
27.10.2022
I’ve been writing a bunch of jest tests recently for libraries that use the underlying window.crypto methods like getRandomValues() and window.crypto.subtle key management methods. One problem I run into is that the window.crypto object isn’t available, so I need to shim it. To use...
Texas Securities Regulators and Attorney General Object to FTX Purchasing Voyager Digital
17.10.2022
Regulators from the state of Texas and the state’s attorney general are objecting to FTX purchasing Voyager Digital, as the state’s securities commissioner needs to “determine whether FTX US is complying with the law.” Texas State Securities Board, Department of Banking, and Attorney General File...
Texas authorities object to Voyager's disclosure statement in its current form
15.10.2022
The Texas state authorities, SSB and DOB, argued that Voyager fails to explain the methodology used to calculate the average coin prices, among others
State Securities Regulators Object to Celsius’ Court Motion to Sell Stablecoins
30.9.2022
As Celsius’ bankruptcy proceedings continue, the court’s trustee William Harrington appointed an examiner on Thursday in order to review the company’s finances, according to a filing submitted on September 29. On the same day, state securities officials from Vermont and Texas...
Texas, Vermont regulators object to Celsius stablecoin sale plan
30.9.2022
A key concern is that the firm hasn’t explicitly outlined what it will do with the stablecoin sale proceeds
In Praise of Shadows
12.7.2022
Our dear friend Robin has a new essay called In Praise of Shadows. Now, before you hop over there looking for nuggets on CSS box shadows, text shadows, and shadow filters… this is not that. It’s an essay …
In Praise of Shadows originally published on CSS-Tricks. You should...
Collective #713
27.5.2022
Create a 3D Scroll Gallery with GSAP * CSS object-view-box * Sherpa * OptimizeImages
The post Collective #713 appeared first on Codrops
First Look At The CSS object-view-box Property
23.5.2022
Ahmad Shadeed — doing what he always does so well — provides an early look at the object-view-box property, something he describes as a native way to crop an image in the browser with CSS.
The use case? Well, …
First Look At The CSS object-view-box Property originally published...
NumisMe: Crypto’s First Cash Protocol – Pay With Cash and Receive Change Back Electronically
15.4.2022
PRESS RELEASE. Eugene, Oregon April 15th, 2022: If there was ever a universal truth to which we could all agree, it would be change. An unequivocal reality of the cosmos, change is constant. Despite emotions, thoughts, or actions, change is an unstoppable force for which there is no immovable...
An Intro to JavaScript Proxy
15.9.2021
Have you ever been in a situation where you wish you could have some control over the values in an object or array? Maybe you wanted to prevent certain types of data or even validate the data before storing it …
The post An Intro to JavaScript Proxy appeared first on CSS-Tricks. You...
Hero Erects Entire Switch Game Wiki After Finding Little Online
13.7.2021
The internet is so big and vast and great and terrible that whenever I can’t find something, I just assume I must not be looking in the right place. In actuality, there’s just a lot of stuff that doesn’t exist because it got deleted or nobody wrote in the first place. That’s what one fan discovered...
Blockchain Object Storage Company Filebase Raises $2M, Aims to Incorporate Filecoin and Arweave Networks
26.4.2021
Filebase, a blockchain-based object storage company built on top of the Sia network has revealed the business has closed an initial seed round gathering $2 million from investors. Interest in decentralized storage networks has blossomed in recent months and Filebase expects the growth of global...
Object.entries
20.4.2021
Navigating and managing data structures is a really important skill for every level of engineer to have and improve upon. Over the years, the JavaScript language has continued to provide more methods for managing data structures, from Object.keys to Object.values and so on. One of my favorites...
How to Mine Ethereum
25.3.2021
Note: I expect a large number of people to object to cryptocurrency mining’s energy use and I totally understand. ...
Bulletproof flag components
29.1.2021
A clever use of CSS grid from Jay Freestone to accomplish a particular variation of the media object design pattern (where the image is centered with the title) without any magic numbers anything that isn’t flexible and resiliant.
The trick …
The post Bulletproof flag components...
React.isValidElement
14.12.2020
Knowing what input type you’ve received is hugely important in JavaScript, which is a big reason for Flow and TypeScript’s rise. One such case where it’s useful to know what an object represents is if the input is a string or a React element. To detect if an object is a React...
It’s all relative.
10.12.2020
I remember sitting in the back seat of our family’s Subaru station wagon. I was six and this was long before child carseats were a thing. My dad was at the wheel and my mom played 20 Questions with me while we drove to some vacation spot I can’t even remember.
It was my mom’s turn...
A Primer on the Different Types of Browser Storage
21.10.2020
In back-end development, storage is a common part of the job. Application data is stored in databases, files in object storage, transient data in caches… there are seemingly endless possibilities for storing any sort of data. But data storage isn’t limited only to the back end. The front end (the...
How to Conditionally Add Attributes to Objects
16.10.2020
JavaScript is full of tricks that you don’t know you want until you … want … them. Or maybe just until you see them. One trick I recently realized was conditionally adding attributes to React elements. Of course this trick essentially boils down to conditionally adding properties...