Search
Gate Ventures, Movement Labs, Boon Ventures to launch $20M crypto fund
13.10.2024
The fund will support protocols targeting the Move programming language and interoperability with the Ethereum ecosystem.
All About JavaScript Loops
19.8.2024
Every programming language has loops. Loops perform an operation (i.e., a chunk of work) a number of times, usually once for every item in an array or list, or to simply repeat an operation until a certain condition is met.…
All About JavaScript Loops originally published on CSS-Tricks...
Solana ‘memecoin frenzy’ prompts uptick in Rust dev demand
7.8.2024
Rust is also becoming an increasingly popular programming language for blockchain firms building “performant distributed systems,” says CryptoJobsList CEO
Exploring Sui’s Object-Centric Model and the Move Programming Language
29.6.2024
A closer look at how Sui’s object-centric model and the Move language can improve blockchain scalability and smart contract development
24.6.2024
CSS Meditation #2: Who gives a flying frick what constitutes a “programming” language.…
originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter
Human-readable code: Why branding is the programming language of humans
22.9.2023
Successful firms know that branding and marketing don’t happen by magic or according to checklist-type formulae
Artbitrum founder says Stylus is a game changer for EVMs
4.9.2023
The Arbitrum-building Offchain Labs co-founder Ed Felten said its new tool would allow more seasoned devs to build EVMs, possibly making them safer
5 real-world Python applications
28.8.2023
From web development frameworks to machine learning libraries, Python’s versatility is driving innovation across the board
History of Python programming language
24.7.2023
Delve into the remarkable evolution of Python, and learn how it grew to become a prominent and beloved programming language in the tech world
JavaScript: Reverse Arrays
26.6.2023
Manipulating data is core to any programming language. JavaScript is no exception, especially as JSON has token over as a prime data delivery format. One such data manipulation is reversing arrays. You may want to reverse an array to show most recent transactions, or simple alphabetic sorting....
StarkNet overhauls Cairo programming language to drive developer adoption
5.1.2023
Ethereum layer-2 scaling platform StarkNet has revamped its Cairo programming language to enable easier onboarding of new developers
VC-Backed Blockchain Project Aptos Reveals Protocol’s ‘Mainnet Has Arrived’
18.10.2022
A new layer one blockchain network called Aptos announced the launch of its mainnet on Monday, following a slew of capital injections from a number of venture capital (VC) firms. The blockchain protocol, crafted with a Rust-centric programming language dubbed Move, is backed by VC companies such...
'Performing as expected' — Aptos Labs defends day 1 criticism
18.10.2022
Aptos’ blockchain claims to handle three times the amount of transactions per second than Solana but day one of its launch saw the network transacting a much lower amount
Let’s Create a Tiny Programming Language
10.5.2022
By now, you are probably familiar with one or more programming languages. But have you ever wondered how you could create your own programming language? And by that, I mean:
A programming language is any set of rules that convert
…
Let’s Create a Tiny Programming Language originally...
Array.prototype.at
8.11.2021
Working with arrays is an essential skill in any programming language, especially JavaScript, as we continue to rely on external data APIs. JavaScript has added methods like find and `findIndex recently, but one syntax I love from languages like Python is retrieving values by negative indexes. When...
HTML is Not a Programming Language?
16.8.2021
HTML is not a programming language.
I’ve heard that sentence so many times and it’s tiring. Normally, it is followed by something like, It doesn’t have logic, or, It is not Turing complete,.so… obviously it is not a programming …
The post HTML is Not a Programming Language?...
Is CSS a Programming Language?
7.5.2021
I have a real distaste for this question. It might seem like a fun question to dig into on the surface, but the way it enters public discourse rarely seems to be in good faith. There are ulterior motives at …
The post Is CSS a Programming Language? appeared first on CSS-Tricks.
You...
CSS is a Strongly Typed Language
13.4.2021
One of the ways you can classify a programming language is by how strongly or weakly typed it is. Here, “typed” means if variables are known at compile time. An example of this would be a scenario where an integer …
The post CSS is a Strongly Typed Language appeared first on CSS-Tricks.
You...
Sharpen Your JavaScript Skills with Pluralsight (Sponsored)
21.12.2020
JavaScript recently turned 25 years old, and while it started by dominating over the client side world, this beautiful programming language is well on its way to taking over the server side. JavaScript isn’t just thriving — it’s evolving with new syntax features, patterns...
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...