Tech Rumors
3 subscribers
235K photos
239K links
Download Telegram
cointelegraph.com

1. Hong Kong believes stablecoin volatility can spillover to traditional finance
According to Hong Kong’s central bank, the interconnection of crypto assets has made the crypto ecosystem more vulnerable to systematic shocks…
#Stablecoin #HongKong #CentralBank #Volatility #FiatMoney

2. SBF, FTX execs reportedly spend millions on properties in the Bahamas
At least 19 properties worth around $121 million were reportedly purchased under FTX's name, Sam Bankman-Fried’s parents and senior-level executives…
#CryptocurrencyExchange #Cryptocurrencies #Investments #SamBankmanFried #Bankruptcy #FTX

3. Cathie Wood's ARK Invest adds more Bitcoin exposure as GBTC, Coinbase stock hit new lows
ARK Invest scoops up bargains as Coinbase shares hit all-time lows and GBTC trades at a near-50% discount to the already suppressed Bitcoin spot price…
#Bitcoin #BTC #GBTC #Coinbase #Grayscale #CathieWood #ARKInvest


dev.to

1. Senior C# Developer Shows 5 Tips To Master Your C# Level
What if I told you that 5 easy tips from a senior C# developer can make you an better coder? Would you believe me?

Most people won’t, because we tend to assume that skill and experience are innate traits that only the most talented developers are born with.

While that may be partially true, when it comes to being able to develop software, most of what makes an exceptional coder doesn’t come down to natural talent as much as it does deliberate practice and some critical thinking skills.

These …
#csharp #dotnet #beginners #tutorial

2. Style your SolidJS website faster with StylifyCSS
Style your SolidJS app quickly and easily without CSS-in-JS using Stylify CSS CSS-like utilities.

Introduction

Stylify is a library that uses CSS-like selectors to generate optimized utility-first CSS based on what you write.

CSS-like selectors
💎No framework to study
💡Less time spent in docs
🧰Mangled & Extremely small CSS
🤘No purge needed
🚀Components, Variables, Custom selectors
📦It can generate multiple CSS bundles

Installation

Install Stylify using cli:

npm i -D @stylify/unplugin
ya…
#css #solidjs #react #javascript

3. Learning Go by examples: part 10 - Instrument your Go app with OpenTelemetry and send traces to Jaeger - Distributed Tracing
In previous articles we created an HTTP REST API server, a CLI, a Bot for Discord and even a game for Nintendo Game Boy Advance.

Today, we will learn how to use OpenTelemetry Go library to create an instrumented application and send traces to a Jaeger instance.

OpenTelemetry

OpenTelemetry is a collection of tools, APIs, and SDKs. Useful to instrument, generate, collect, and export telemetry data (metrics, logs, and traces) to help you analyze your software’s performance and behavior.

OpenT…
#go #beginners #opentelemetry #tracing
cointelegraph.com

1. Here's why $16.5K is critical for November's $1.14B Bitcoin options expiry
BTC bulls were liquidated during the drop to $15,500 on Nov. 21, and more downside could occur if bears profit $245 million during Friday's expiry…
#markets #grayscale #options #derivatives #expiry #NYAG

2. Blockchain-based infrastructure forges the future for carbon markets, crypto and commodities
Rising from the ashes of old crypto exchanges, a new paradigm arises…
#Blockchain #Cryptocurrencies #Tether #Markets #Fintech #Payments

3. US lawmakers ask DOJ hold FTX execs accountable 'to the fullest extent of the law'
“The fall of FTX was not simply a result of sloppy business and management practices, but rather appears to have been caused by intentional and fraudulent tactics," said the letter…
#regulation #crimes #ftx #sambankmanfried #unitedstates


dev.to

1. a first look at solidstart
Outline

Introduction

A History of SolidJS
Comparing React and SolidJS
SolidJS Benchmark Performance
SolidStart Motivations

Create Client Rendered Solid Project

TypeScript and Vite Configuration
HTML Entry Point and CSS Stylesheet
App Entry Point and Render Function
Start Development Server

Migrate Project to SolidStart

SolidStart Scripts and Vite Configuration
Index Route
Root and Entry Points

Components and Reactive Primitives

Create Signal
Create Effect
Create Route Data

API Routes

D…
#solidjs #solidstart #vite #netlify

2. Here’s why quantum computing could be the big break for the Julia Language
In the world of programming languages, a new star is on the rise. The Julia language has been gaining popularity in recent years, thanks to its versatility and ease of use. And it could be about to get a big boost from an unlikely source: quantum computing.

In a paper published late October of 2020, a team of researchers from the Chinese Academy of Sciences and the University of Waterloo proposed using the Julia language as a tool for developing quantum algorithms. The paper, titled “Yao.jl: Ex…
#julialang #quantum #programming #opensource


theverge.com

1. The best smartphone you can buy for under $500
The Verge

You can get a great smartphone at this price, whether you want an iPhone, a 90Hz screen, or water resistance

Continue reading……

2. An alleged crypto scam involving a bank called Polybius is headed to court
Illustration by Alex Castro / The Verge

Two Estonians have been arrested and are facing extradition to the US after being accused of defrauding thousands of people out of around $575 million with a crypto Ponzi scheme, according to the US Department of Justice. Sergei Potapenko and Ivan Turõgin, along with four unnamed co-conspirators, were allegedly behind a scam crypto mining company called HashFlare and a fake crypto bank project called Polybius.
The scheme began in 2013 when Potapenko, Tur…
dev.to

1. Yet Another Newsletter LOL: Super Charge!
Another week, another newsletter. Let’s get to it!

Around the Web

A great read on fine-grained reactive Performance by Milo

Super Charging Fine-Grained Reactive Performance
Milo ・ Dec 1 ・ 10 min read

#solidjs
#webdev
#reactivity
#performance

Kevin’s videos are great and Flexbox or grid - How to decide? is another banger.

…knowing the strengths of each one of them lets you go down the happy path, go down the path of least resistance…” - Kevin Powell

A great write up from Dr. Axel Ra…
#newsletter #javascript #css #deno

2. Equality of values in JavaScript
I'm currently doing the JustJavascript course, which I highly recommend, and I've learned how equality of values works in JavaScript.

There are 3 kinds of equality in JavaScript.

Same value equality: Object.is(a, b).

Strict equality: a === b (triple equals).

Loose equality: a == b (double equals).

Same value equality

Object.is(a, b)  tells us if  a  and  b  are the same value:

Object.is(2, 2); // 🟢 true
Object.is(undefined, undefined); // 🟢 true
Object.is(null, null); // 🟢 true
Object.is
#javascript #webdev #beginners #tutorial
dev.to

1. La solución definitiva: (Dependency injection, Dependency inversion, Inversion of control y Hexagonal architecture)
Hola atomeros, les saludo con cariño y espero que estén bien.

🤜🤛🤓

Les comparto mi receta casi perfecta en mi opinión, para lograr Software limpio, mantenible, testeadle y escalable.

Está basada en el uso de:

Dependency injection (Patrón de diseño)
Inversion of control (Principio de diseño de software IoC)
Dependency inversion (Principio SOLID - DIP)
Hexagonal arquitectura(Arquitectura del software)

La combinación ideal dependerá del tamaño del proyecto; para un Software grande se recomie…
#javascript #solidjs #architecture #ioc

2. GraphQL Oversimplified
GraphQL is a query language for your API, and a runtime for executing those queries against your data. It was created by Facebook as an alternative to REST APIs, which have been the standard way of exposing data through APIs for many years.

However, graphqls new way of writing APIs can make it difficult for developers accustomed to working with REST. Some core concepts of GraphQL are essential to understand how GraphQL works. I will be covering those core concepts in this post. However, if you…
#graphql #webdev #programming #javascript
dev.to

A minimal, multi-framework, responsive image component
Doing web images right can be hard. The tag is just the starting point. In 2023, if you want the best performance you should be:

using srcset to deliver multiple resolutions for different device and screen sizes
using sizes so that the browser knows which image resolution to download
delivering modern image formats such as AVIF and WebP if the browser supports them
ensuring that the image resizes responsively, maintaining aspect ratio
avoids layout shift when the images has loaded
use native la…
#react #vue #solidjs #svelte
dev.to

Learn how to install SolidJS with Flowbite and Tailwind CSS
SolidJS is a popular and open-source declarative JavaScript library that empowers reactive UI...
#solidjs #tailwindcss #flowbite #webdev
dev.to

SOLID PRINCIPLES
SOLID PRINCIPLES SOLID is an Object Oriented Design principle SOLID is more about how you design your...
#webdev #solidjs #beginners #programming
dev.to

React vs Signals: 10 Years Later
How does the old Winston Churchill quote go? Those who fail to learn from history are doomed to...
#webdev #javascript #react #solidjs
dev.to

Making the Case for Signals in JavaScript
Amidst all the conversation around Signals the recent weeks, I have forgotten to talk about arguably...
#javascript #webdev #solidjs #reactivity
dev.to

Cool library that I recently discovered: Zag.js
Today, I want to share with you a cool library that I recently discovered: Zag.js! 🎉 🌟 Zag.js is...
#react #vue #solidjs #webdev
dev.to

Yet Another Newsletter LOL: Signals!
Just a heads up that there will be no newsletter next week as I’m on vacation. This one’s coming to...
#solidjs #newsletter #css #mysql
dev.to

Creating a Minesweeper Game in SolidJS - Score, Timer and Game State
Welcome to the 3rd installment of the “Creating a Minesweeper Game in SolidJS” post series. In the...
#solidjs #tutorial #gamedev #javascript
dev.to

Meteor.js with Vite, Solid, and Tailwind CSS
In the world of web development, choosing the right tools can make a significant difference in the...
#meteorjs #solidjs #vite #tailwindcss