Search
How To Chip Away At A Massive Games Backlog
2.12.2020
It’s called a backlog—that long list of games you’ll “get to someday” but ignore in favor of re-running Hades yet again. Maybe yours recently swelled as a result of irresistible Black Friday or Cyber Monday deals. Maybe it’ll grow even more over the coming holidays. Whatever the case, a gargantuan...
OECD tax director says international crypto tax standards are coming in 2021
27.11.2020
The director of the OECD’s tax center has revealed that the organization expects to release a tax reporting standard for crypto assets by the end of next year
Use a Submit Button Outside of !
24.11.2020
Have you ever felt like you’ve been a professional developer or designer forever, and somehow not known something basic, and borderline hate yourself? That’s me with a trick that was introduced to me by Miguel Piedrafita: 🔥 You can submit forms from a button outside of the form...
4 tips to avoid phishing attacks
23.11.2020
Once a user identifies a phishing attempt, spreading the word online can assist in the security of everyone’s funds
Detect Generator Functions with JavaScript
23.11.2020
In the current JavaScript climate of new syntaxes, features, and using loads of external libraries, it seems harder than ever to be sure what your functions are being given or even what the data represents. Of course, we’ve come up with Flow and TypeScript to help, but we can’t count...
git: Remove Untracked Files
19.11.2020
I’ve always said that I know just enough about git to get the job done, but also do something destructive. Nothing embodies that more than my recent mistake. I somehow found a git repository full of untracked files and git stash wouldn’t fix it. Desperation led me to learning how...
Node isConnected
13.11.2020
Every so often I discover a property in JavaScript objects that I didn’t know existed, oftentimes using another trick to accomplish the same functionality. One such property I just learned about was isConnected, a node property that attached to a context (i.e. document). Here’s how...
Is this the top? CNBC tips five months of Bitcoin upside
13.11.2020
“This is the death knell of Bitcoin. It was fun whilst it lasted. $3K here we come.”
9 Crypto and Blockchain Firms That Are Hiring Right Now: November Edition
29.10.2020
There’s no getting around it: the jobs market is tough. More so than ever, budding candidates must set themselves apartContinue Reading
The post 9 Crypto and Blockchain Firms That Are Hiring Right Now: November Edition appeared first on CoinMarketCap Blog
Highest weekly close since early 2018: 5 Bitcoin price tips this week
26.10.2020
Another bullish start to the week comes as macro markets falter and one analyst says price growth will go “vertical” in early 2021
Funds locked in DeFi surge $1B as analyst tips post-election bull run
23.10.2020
Crypto collateral locked in DeFi protocols has surged to an all-time high over $12 billion
How to Prevent Pasting into an Input
19.10.2020
Every once in a while I get to a website that doesn’t allow me to paste into a form input. In most cases it’s something to do with login credentials (username and or password) and auth codes. So how are they preventing me from pasting information? It’s as easy as you’d...
Record fundamentals and a $12K pump: 5 Bitcoin price tips this week
19.10.2020
Bitcoin’s difficulty and hash rate are higher than ever as markets prepare for the outcome of the U.S. elections
Interest Growing in Chiliz SOCIOS.COM Staking Feature “Locker Room”
18.10.2020
The new feature, which went live on Monday, October 5th on fan voting and rewards app Socios.com, allows $CHZ holdersContinue Reading
The post Interest Growing in Chiliz SOCIOS.COM Staking Feature “Locker Room” appeared first on CoinMarketCap Blog
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...
CipherTrace gives officials tips on how to uncover criminals' crypto caches
14.10.2020
CipherTrace has published comprehensive guidance intended to help law enforcement identify signs of crypto usage when conducting investigations
How to Create an Async Function
24.9.2020
One thing I love about JavaScript is that there are many ways to accomplish the same task, one such example being creating functions. There are several patterns for functions; one of the last you see used is the new Function method: /* new Function(arg1, arg2 (...), body) */ const myFunction =...
Remove the Search Input Clear(x) Icon
21.9.2020
I really appreciate the amount of different <input> elements we’ve received over the past decade. These elements don’t just bring a new semantic advantage, but also provide UI helpers, which in many cases are useful. In a recent case, I found a UI element not useful: the x (clear)...
How a Spoof Turned Into a Media Hype About Bitcoin Cash
19.9.2020
An anonymous Bitcoin Cash (BCH) supporter says he deliberately started a spoof which successfully baited local media to report on the coin. The trick, which involved the use of 100 Bitcoin Cash tip stickers, only cost a total of $1,100 yet it managed to get BCH featured by media outlets...
Logical Assignment Operators
10.9.2020
I love JavaScript, it’s my favorite programming language, but I love dipping into other languages because they offer a new perspective on coding paradigms. There’ve been syntax additions to JavaScript that I’ve seen I found interesting (think ?? in optional chaining) and now...