Do It by Code
54 subscribers
713 photos
99 videos
14 files
1.24K links
We uhhhhh... do things by coding them.
Download Telegram
Looking for where to deploy your AI products for free? Checkout

https://www.restack.io/pricing
They have a no credit card with a free 30USD free compute to get u started.

#AI #Deployment
This media is not supported in your browser
VIEW IN TELEGRAM
New video of Reachy 2 by France-based Pollen Robotics shows it performing teleoperated high-precision tasks.

The beta version of the bot with open-source ecosystem launches next month.

Prices: $75K for the full robot with a mobile base; $38K for a stationary one-armed model.
Characters that can be represented as a sum of a perfect range

print(b" ".join([chr(sum(range(i))).encode(errors="ignore") for i in range(1000)]).decode(errors="ignore"))


credits: davide
Media is too big
VIEW IN TELEGRAM
What have students made using Unreal Engine?

Using everything from Unreal Engine and MetaHuman to RealityCapture and Quixel Megascans, these projects are a showcase of what’s possible with a little imagination and the Epic ecosystem!

This video gives you a glimpse at some of the stunning work produced by our talented community of students in 2024 📚


These are not some company-sponsored games, these are games made by university students around the world.
Randomness is extremely important for secure encryption. Each new key that a computer uses to encrypt data must be truly random, so that an attacker won't be able to figure out the key and decrypt the data. However, computers are designed to provide predictable, logical outputs based on a given input. They aren't designed to produce the random data needed for creating unpredictable encryption keys.

https://www.cloudflare.com/learning/ssl/lava-lamp-encryption/
WhatWeb identifies websites. Its goal is to answer the question, "What is that Website?". WhatWeb recognises web technologies including content management systems (CMS), blogging platforms, statistic/analytics packages, JavaScript libraries, web servers, and embedded devices. WhatWeb has over 1800 plugins, each to recognise something different. WhatWeb also identifies version numbers, email addresses, account IDs, web framework modules, SQL errors, and more.

GitHub: https://github.com/urbanadventurer/whatweb
Live: https://www.whatweb.net/
Things we wish we didn't know.

https://immich.app/cursed-knowledge/

Long passwords are cursed:
The bcrypt implementation only uses the first 72 bytes of a string. Any characters after that are ignored.

JavaScript Data objects are cursed:
JavaScript date objects are 1 indexed for years and days, but 0 indexed for months.
Forwarded from Davide
those two are actually very cursed
the second one caused me serious problems once in a software I was paid for
Here's an opensource alternative of cursor i honestly think is gonna be a game changer since u can use ollama(locally hosted AI) to do ur AI shinanigans.

https://voideditor.com/

#opensource #alternative
This is a real response from Hetzner (shared by a user on Twitter)

Reddit Link
GitHub Notification Emails Hijacked to Send Malware

#Lumma

P.S: Lumma is one of many malware operations (read: gangs) that offer a "malware as a service" product. Their so-called "stealer" code searches through your system for cryptocurrency wallets, stored credentials, and other sensitive data. This data is then sent to their command-and-control (C2) servers where the gang can then move on to either stealing money from you, or profit from selling your data online.
Do It by Code
Photo
Step back for a moment and you'll recall that it's not the browser that is downloading this malicious exe, instead it's PowerShell - or, more specifically, it's the System.Net.WebClient class in .NET Framework.

This class has a method, DownloadFile which does exactly that - downloads a file to a local path, except this method does not set the MOTW (Mark of The Web) flag for the downloaded file.