Search
Crypto Scammers Now Stalking Dating Apps Like Tinder for Prey
9.7.2021
Crypto scammers may have found a new hunting ground for bitcoin (BTC) and altcoin-holding victims: dating apps.
Per a case study published by the US-based crypto self-custody solutions provider Casa, scammers have developed a “novel attack” that targets crypto enthusiasts. The firm warned...
Body Toggle
6.7.2021
I appreciate the clarity of this trick that Mikael Ainalem posted over on Reddit:
It’s a one-liner that toggles the class on the <body> so you can mock up different states and toggle between them on click.
<body onclick="this.classList.toggle("active");"
Could …
The post...
The Dilemma of Naming Font Size Variables
6.7.2021
Normally, a project will have a set of pre-determined font sizes, usually as variables named in such a way that seeks some semblance of order and consistency. Any project of considerable size can use something like that. There are always …
The post The Dilemma of Naming Font Size Variables...
What does `font: 110%/1.4 system-ui` mean?
30.6.2021
I use this line, or one like it, in a lot of quick demos. Not that it’s not a production-worthy line of code—I just tend to be a bit more explicit on bigger projects.
html {
font: 110%/1.4 system-ui;
}
…
The post What does `font: 110%/1.4 system-ui` mean? appeared first...
System *Things
29.6.2021
I think we’re all largely aware of named colors in CSS:
color: OldLace;
background: rebeccapurple;
I guess you’d just call those “named colors” in CSS.
Those aren’t the only kind of named colors there are though. Some of them …
The post System *Things appeared...
[článek] Krátké vlny: Pře o telekomunikační zákon, MojeID Klíč a nákupy na dark webu
17.6.2021
[4 minuty čtení] Návrh novely zákona o elektronických komunikacích prošel třetím čtením v Poslanecké sněmovně. O co se poslanci při debatě nejvíce dohadovali? Nelze nezačít zprávou z Poslanecké sněmovny, kde ve středu prošel třetím čtením návrh novely zákona o elektronických komunikacích. Původní...
Guild of Guardians pre-game registrations hit 133K as NFT sales surge
10.6.2021
Guild of Guardians was developed by Stepico Games, a Ukraine-based game developer, and published by the Australian-based marketplace Immutable
All The Pre-E3 2021 Leaks
10.6.2021
Officially, E3 doesn’t start until June 12. But leaks don’t follow a schedule. So for those out there who love spoilers or who hate waiting for news, we’ve rounded up all the pre-E3 2021 leaks into one convenient place. Read more
target=”blank”
9.6.2021
Does that make your eye twitch a little bit? Like… it’s a typo. It should be target="_blank" with an underscore to start the value. As in…
<a target="_blank" href="https://codepen.io"Open CodePen in a New Tab
</a
Welp, that’s correct syntax!…
The post...
Playdate Handheld Gets Price, Pre-Order Date, And 24 Free Games
8.6.2021
Firewatch and Untitled Goose Game publisher Panic today provided a rather substantial update on Playdate, the cute little handheld with a crank it first announced in 2019.Read more
Dogecoin gets back to pre-crash prices as $16M in DOGE shorts get liquidated
2.6.2021
Dogecoin bull run is not over thanks to Coinbase listing and simultaneous DOGE price rally
Pre-2019 Bitcoins now make up just 44% of the BTC active supply
2.6.2021
Despite the May sell-off, strong hands are mostly holding firm at prices which seemed impossible two years ago
Code blocks, but better
2.6.2021
Pedro Duarte made a wishlist for styled code blocks in blog posts and documentation, then hand-rolls a perfect solution for that wishlist. For example, a feature to be able to highlight certain lines or words within the code block. The …
The post Code blocks, but better appeared first...
To $ or Not to $: Displaying Terminal Code Snippets
27.5.2021
It’s very popular to put a $ on lines that are intended to be a command in code documentation that involves the terminal (i.e. the command line).
Like this:
$ brew install somepackage
The point of that is that it …
The post To $ or Not to $: Displaying Terminal Code Snippets appeared...
proxy-www
24.5.2021
I like a good trick. What if… a URL was… a promise… that fetched said URL?
www.codepen.io.then((response) ={
console.log(response);
});
That’s what @justjavac did with JavaScript Proxys. A clever trick, that. Don’t @ me about the practicality. Trick…
The post...
Report: ASIC Giant Bitmain Pre-Orders 5nm Chips Produced by TSMC’s N5 Process
17.5.2021
Bitmain, one of the largest application-specific integrated circuit (ASIC) manufacturers in the world, is reportedly working with the Taiwan Semiconductor Manufacturing Company (TSMC) in order to leverage TSMC’s 5nm semiconductors. Industry sources say that the 5nm chips being created...
Creating Stylesheet Feature Flags With Sass !default
14.5.2021
!default is a Sass flag that indicates conditional assignment to a variable — it assigns a value only if the variable was previously undefined or null. Consider this code snippet:
$variable: 'test' !default;
To the Sass compiler, this line …
The post Creating Stylesheet Feature Flags With...
ILUS Coin Pre-Sale has been Extended
14.5.2021
The text below is an advertorial article that was not written by Cryptonews.com journalists.
It’s not too often that you come across well-reputed publicly traded companies launching their native token. ILUS International, however, is venturing into the crypto space to launch its native ILUS Coin....
Randy Pitchford, What The Hell Are You Talking About
6.5.2021
I’m generally able to follow along with Gearbox president Randy Pitchford’s manic energy, but two tweets he made this morning have thrown me for a loop. He’s not really announcing Borderlands 4, is he?Read more
Creating an Editable Textarea That Supports Syntax-Highlighted Code
16.4.2021
When I was working on a project that needed an editor component for source code, I really wanted a way to have that editor highlight the syntax its typed. There are projects like this, like CodeMirror, Ace, and …
The post Creating an Editable Textarea That Supports Syntax-Highlighted Code...