Search
Kinesis’ TKO Is My New Favorite Compact Keyboard
13.4.2021
Kinesis Gaming’s new 60 percent keyboard is a lot more than just small and portable. The TKO Tournament keyboard’s got hot-swappable switches, an optional triple-split spacebar, and the ability to tilt up either side for maximum ergonomic comfort. It’s more than I knew I needed in a tiny...
Insert Cursor at Any Position at Command Line
11.3.2021
As much as I enjoy writing lengthy pieces of JavaScript APIs, techniques, and other tech brilliance, I very much enjoy providing people quick tips to make their daily dev lives better. This is one such post. Oftentimes I’m working with long command line directives, and as you can imagine,...
Activision Blizzard Hires Bush-Era Torture Apologist As Chief Compliance Officer
3.3.2021
Activision Blizzard announced yesterday that Frances F. Townsend, a former George W. Bush-era counterterrorism appointee and torture apologist, would become its new head of compliance, in charge of making sure the company doesn’t run afoul of the varying laws and regulations throughout all of...
Hiding Content Responsibly
24.2.2021
We’ve covered the idea of hiding things in CSS many times here, the most recent post being Marko Ilic’s “Comparing Various Ways to Hide Things in CSS” which did a nice job of comparing different techniques which you’d use in different …
The post Hiding...
Maximally optimizing image loading for the web in 2021
16.2.2021
Malte Ubl’s list for:
8 image loading optimization techniques to minimize both the bandwidth used for loading images on the web and the CPU usage for image display.
Fluid width images in CSS, not forgetting the height and width attributes
…
The post Maximally optimizing image...
How to Install a NPM Module from GitHub Branch
12.2.2021
In my journey to work more quickly with a project containing loads of dependencies, I’ve come across a few techniques I’ve not needed to use before. I previously wrote about How to Push to a Git Remote Branch of a Different Name — this time we’ll talk about installing...
New Report Studies Satoshi Nakamoto’s Inconsistent British and American Writing Techniques
7.1.2021
On December 31, 2020, a new report was published that studies Satoshi Nakamoto’s writing style, the creator’s use of expressions, and spelling. The new examination shows Satoshi’s spelling and American and British wording indicates it was very inconsistent and littered with...
Recreating a Dave Whyte Animation in React-Three-Fiber
17.12.2020
Learn how to use instanced rendering and post-processing techniques to recreate a hypnotic looping animation with react-three-fiber.
The post Recreating a Dave Whyte Animation in React-Three-Fiber appeared first on Codrops
Old is Solid; New Gets Talked About
15.12.2020
When Chris asked me to write about “one thing I learned about building websites this year” I admit my brain immediately went through a list of techniques and CSS properties I started using this year. But then I paused. Other people can write about that much better than I can....
Belgian Regulator Warns of Crypto Scammers That Target Male Tinder Users With Fake ICOs
10.12.2020
The Belgian regulator, the Financial Services and Markets Authority (FSMA), says scammers are employing new techniques which target Tinder and Facebook users. Using what the FSMA terms an “emotional scam,” criminals are targeting male users of the dating app Tinder with promises...
Microsoft Report says Nation-State Hacker Group is Leveraging Cryptocurrency Techniques to Stay Under the Radar
1.12.2020
A new security report by Microsoft says nation-state hacker group Bismuth is now deploying cryptocurrency-mining malware alongside its regular cyber-espionage toolkits. According to the report, the deployment by Bismuth of Monero coin miners in recent campaigns has provided another way for...
Full Bleed
15.10.2020
We’ve covered techniques before for when you want a full-width element within a constrained-width column, like an edge-to-edge image within a narrower column of text. There are loads of techniques.
Perhaps my favorite is this little utility class:
.full-width {
width: 100vw;
position:...
How to Get Handwriting Animation With Irregular SVG Strokes
11.9.2020
I wanted to do a handwriting animation for calligraphy fonts — the kind where the words animate like they are being written by an invisible pen. Because calligraphy fonts have uneven stroke widths (they actually aren’t even strokes in terms of SVG), it was near impossible to do this sort of thing...
Trader Who Earned USD 11m Shares Trading Techniques, Offers Advice
19.8.2020
A bitcoin (BTC) trader has shared the story about how he earned over USD 11,000 million, and offered some technical advice for beginner traders.
The trader told his story in an interview with bitFlyer Japan, a trading platform, which described him as one of "the most famous" of...
Defcon Speaker Discusses Liberating $300K Worth of Bitcoin From an Encrypted File
12.8.2020
This year due to the coronavirus outbreak the world-famous hackers’ convention Defcon held it’s 28th annual event with virtual presentations in “safe mode.” One of the presentations was from an executive from Pyrofex, Michael Stay, who discussed how he broke into...
Hide Scrollbars During an Animation
24.6.2020
CSS still can’t animate to auto dimensions.
.dropdown {
transition: 0.2s;
height: 0;
}
.dropdown.open {
/* the height will change, but it won't animate. */
height: auto;
}
There is JavaScript trickery you can try. Brandon Smith outlined several techniques here a little while back....
Easing Animations in Canvas
19.6.2020
The <canvas> element in HTML and Canvas API in JavaScript combine to form one of the main raster graphics and animation possibilities on the web. A common canvas use-case is programmatically generating images for websites, particularly games. That’s exactly what I’ve done in a website...
New Ransomware Uses Sophisticated Evasion Techniques
11.6.2020
Recorded Future says that Thanos deploys a particular encryption technique in its attack and offers a revenue-sharing scheme for external hackers
Traditional Stock Market Valuation Techniques Reveal Overvalued DeFi Projects
14.5.2020
Applying stock market valuation methods to DeFi leads to surprisingly tame results, all things considered
Create a Responsive CSS Motion Path? Sure We Can!
15.4.2020
There was a discussion recently on the Animation at Work Slack: how could you make a CSS motion path responsive? What techniques would be work? This got me thinking.
A CSS motion path allows us to animate elements along custom user-defined paths. Those paths follow the same structure as SVG paths....