Search
Logic Enters Crypto Game With USD 6M Bitcoin Investment
20.11.2020
Logic. Source: Twitter/@Logic301
American retired rapper, record producer and streamer Sir Robert Bryson Hall II, aka Logic, said he bought USD 6m worth of bitcoin (BTC) last month. The artist subsequently changed his Twitter account name to Bobby Bitcoin in a reference to his crypto investment...
Rapper Logic invests $6M in Bitcoin as latest celebrity to catch crypto bug
20.11.2020
Depending when exactly he bought in, Logic could have already made $2 million
Billl Miller & JPMorgan Find Logic In Bitcoin, Roubini Sees Some Value in BTC
9.11.2020
A few major names in the worlds of finance and entertainment made bullish statements on bitcoin (BTC) in the past couple of days, while even a well-known BTC skeptic said that it's "maybe a partial store of value."
"It's been a great month for bitcoin, but it's also been a great...
The CSS Custom Property Toggle Trick
29.10.2020
Back in July 2020, I got an email from James0x57 (I always try to refer to people by their name, but I think I get the sense they prefer to go by screen name) that says:
The entire world of branching conditional logic and bulk feature toggling for custom CSS properties is possible and only exists...
EcoChain’s Capital Logic Will Transform the DeFi Ecosystem
29.10.2020
Decentralized finance(DeFi) has taken the blockchain network by a storm and is now arguably the most discussed topic. Although it has been a roller coaster ride, the DeFi network has grown enormously in size and number. Today, the total value locked in DeFi contracts is more than $11b. Forex Market...
A Complete Walkthrough of GraphQL APIs with React and FaunaDB
27.8.2020
As a web developer, there is an interesting bit of back and forth that always comes along with setting up a new application. Even using a full stack web framework like Ruby on Rails can be non-trivial to set up and deploy, especially if it’s your first time doing so in a while.
Personally I have...
Where Does Logic Go on Jamstack Sites?
24.8.2020
Here’s something I had to get my head wrapped around when I started building Jamstack sites. There are these different stages your site goes through where you can put logic.
Let’s look at a special example so you can see what I mean. Say you’re making a website for a music venue. The most...
Ripple Says XRP Lawsuit Based on ‘Unsupported Leaps of Logic’
31.7.2020
Ripple has hit back at the lead plaintiff in an ongoing class-action lawsuit accusing the firm and its CEO of securities fraud
First Mover: The Logic Behind Three Arrows’ $200M Grayscale Bet
23.6.2020
Three Arrows has taken a large bet on GBTC but the halcyon days of the Grayscale premium flip may be numbered
Ayn Rand: Francisco d’Anconia’s Speech on Money
14.6.2020
“So you think that money is the root of all evil?” said Francisco d’Anconia. “Have you ever asked what is the root of money? Money is a tool of exchange, which can’t exist unless there are goods produced and men able to produce them. Money is the material shape of...
Get Programmatic Control of your Builds with Netlify Build Plugins
27.5.2020
Today at Jamstack_Conf, Netlify announced Build Plugins. What it does is allow you to have particular hooks for events within your build, like when the build starts or ends. What’s nice about them is that they’re just a plain ‘ol JavaScript object, so you can insert some logic...
Waymo se rozšiřuje do Evropy. Koupilo oxfordský startup Latent Logic
13.12.2019
Waymo ve čtvrtek na Twitteru oznámilo, že se rozšiřuje do Evropy. Dosáhlo tak akvizicí oxfordského startupu Latent Logic, který se věnuje simulování chování řidičů na silnicích. Informoval o tom Business Insider.
Americké Waymo, které spadá pod Alphabet (stejně, jako Google), se zaměřuje na
Wufoo Cracks the Code for Forms So You Don’t Have To
8.10.2019
There was a lot of buzz about forms last week when Jason Grisby pointed to a missing pattern attribute on Chipotle's order form that could have been used to help-through millions of dollars in orders. Adrian Roselli followed that up with the common mistake of forgetting for and id attributes...
Model-Based Testing in React with State Machines
4.9.2019
Testing applications is crucially important to ensuring that the code is error-free and the logic requirements are met. However, writing tests manually is tedious and prone to human bias and error. Furthermore, maintenance can be a nightmare, especially when features are added or business logic...
PR: bitHolla Releases Open Exchange Kit HollaExShell
24.7.2019
bitHolla, the company that builds customized cryptocurrency trading software is announcing the launch of its new product HollaExShell, an open exchange software package, giving anyone the ability to launch a full fledged crypto exchange from a command-line interface. HollaEx packages provided...
In Defense of the Ternary Statement
10.4.2019
Some months ago I was on Hacker News (as one does) and I ran across a (now deleted) article about not using if statements. If you’re new to this idea (like I was), you’re in a for a real treat. Just search for "if statements" on Hacker News. You'll get articles proposing that you might not need...
Intro to React Hooks
18.1.2019
Hooks make it possible to organize logic in components, making them tiny and reusable without writing a class. In a sense, they’re React’s way of leaning into functions because, before them, we’d have to write them in a component and, while components have proven to be powerful and functional...
Animating Between Views in React
21.12.2018
You know how some sites and web apps have that neat native feel when transitioning between two pages or views? Sarah Drasner has shown some good examples and even a Vue library to boot.
These animations are the type of features that can turn a good user experience into a great one. But to achieve...
CSS Selectors are Conditional Statements
6.12.2018
foo {
}
Programmatically, is:
if (element has a class name of "foo") {
}
Descendent selectors are && logic and commas are ||. It just gets more complicated from there, with things like combinators and pseudo selectors. Just look at all the ways styles can cascade.
Jeremy Keith:
If...
Solved with CSS! Logical Styling Based on the Number of Given Elements
26.7.2018
This post is the third in a series about the power of CSS.
Article Series:
Colorizing SVG Backgrounds
Dropdown Menus
Logical Styling Based On the Number of Given Elements (this post)
Did you know that CSS is Turing complete? Did you know that you can use it to do some pretty serious logical...