Вастрик
👉 vas3k.ru
Веду блог о технологиях, пишу код, отвратительно путешествую и фотографирую это
Hacker News Hacker News
последний пост 4 часа назад
Swedish Exports of Ball Bearings
Swedish Exports of Ball Bearings

Your request has been blocked due to a network policy.

If you're running a script or application, please register or sign in with your developer credentials here.

Additionally make sure your User-Agent is not empty and is something unique and descriptive and try again.

if you're supplying an alternate User-Agent string, try changing back to default as that can sometimes result in a block.

if you think that we've incorrectly blocked you or you would like to discuss easier ways to get the data you want, please file a ticket here.

4 часа назад @ old.reddit.com
How do playing cards work? No one knows
How do playing cards work? No one knows How do playing cards work? No one knows

I think it’s because we don’t understand playing cards.

There are chess cards, money-suited cards, and cards with (gasp) numbers.

The money cards are the ones that historians point to as potential precursors for our modern playing cards, since money cards developed four recognizable suits.

As with most historical playing cards, the number of cards in a deck can vary — but some ganjifa decks can have 96 cards and eight suits.

That adds a dimension to the question of why playing cards are so compelling.

4 часа назад @ polygon.com
Investigating an "Evil" RJ45 Dongle
Investigating an "Evil" RJ45 Dongle Investigating an "Evil" RJ45 Dongle

Other than the potential for IP tomfoolery, the lineage of the chip is important because the original Realtek design is pretty old; the datasheet was released in 2013.

Heck, a bit over a decade ago, I built an evil plasma globe for work.

The “application” protocol of the flash chip equally simple and is common to almost all serial memory ICs.

filesystem image containing a self-extracting Windows driver; the programming tool puts the .iso file verbatim onto the SPI flash.

Should you be worried about the possibility of being sent an evil USB dongle from faraway lands?

5 часов назад @ lcamtuf.substack.com
So You Want to Build Your Own Data Center
So You Want to Build Your Own Data Center

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

5 часов назад @ blog.railway.com
Show HN: Compile C to Not Gates
Show HN: Compile C to Not Gates Show HN: Compile C to Not Gates

c2fjCompiling C --> RiscV --> Flipjump --> .fjmThis compiler is a proof that any program can be compiled into a bunch of NOT operations.

--build-dir Save the builds in this directoryWhat if my project is more then a single c?

The RiscV -> FlipJump part of the compilation parses the compiled elf, and matches each opcode with the appropriate flipjump macro.

The last phase, running the .fjm file, uses the flipjump package to interpret the .fjm file, and allows to debug it too.

The entire loadable memory of the compiled elf is being loaded into flipjump using this file.

6 часов назад @ github.com
Branchless UTF-8 Encoding
Branchless UTF-8 Encoding Branchless UTF-8 Encoding

The number of leading zeros will range from 12 to 32 – a very reasonable size for a lookup table.

const fn utf8_bytes_for_codepoint ( codepoint : u32 ) -> usize { let len = LEN [ codepoint .

let exceeded_bit = ( codepoint > 0x10_FFFF ) as usize ; let exceeded_mask = exceeded_bit << 2 | exceeded_bit << 1 | exceeded_bit ; len & !

Put differently, the “count leading zeros” intrinsic isn’t necessarily a branchless instruction.

len += ( codepoint > 0x7f ) as usize ; len += ( codepoint > 0x7ff ) as usize ; len += ( codepoint > 0xffff ) as usize ; // As before: let surrogate_bit = (( codepoint >= 0xD800 ) && ( codepoint <= 0xDFFF )) as usize ; let surrogate_mask = surrogate_bit << 2 | surrogate_bi…

6 часов назад @ cceckman.com
Higher potassium intake at dinner linked to fewer sleep disturbances – study
Higher potassium intake at dinner linked to fewer sleep disturbances – study Higher potassium intake at dinner linked to fewer sleep disturbances – study

As such, a cross-sectional study in Japan examined the relationship between potassium and sodium intake and insomnia among healthy Japanese adults.

When consumption during each meal (breakfast, lunch, dinner, and snacks) was analysed, only potassium intake at dinner remained significantly associated with AIS score (p = 0.003).

Higher potassium intake, especially at dinner, indicates fewer sleep disturbances [based on AIS scores].

Potassium powerPrevious studies have shown that lower potassium intake is associated with short sleepers, sleepiness during the day, poor sleep quality and sleep efficiency, and nighttime awakening.

Given the well-documented association between poor sleep and hyper…

6 часов назад @ nutraingredients-asia.com
Mathematics of the daily word game Waffle
Mathematics of the daily word game Waffle Mathematics of the daily word game Waffle

Comments

6 часов назад @ arxiv.org
Hands-On Graphics Without X11
Hands-On Graphics Without X11 Hands-On Graphics Without X11

I’ve found this exercise exciting because, in the old days, graphics were trivial (mode 13h, anyone?)

The kernel is obviously rendering “graphics” by drawing individual letters; so why can’t you, a user of the system, do so too?

unsigned int mode = WSDISPLAYIO_MODE_DUMBFB; if (ioctl(fd, WSDISPLAYIO_SMODE, &mode) == -1) err(1, "ioctl failed"); // Map the framebuffer memory.

And, for that, we have to turn to the wskbd device.

You are now equipped with the basics to write graphical applications on a NetBSD system (and maybe OpenBSD too) without running X11.

8 часов назад @ blogsystem5.substack.com
Brood War Korean Translations
Brood War Korean Translations Brood War Korean Translations

For decades, the BW community (both Korean and foreigner) has watched and analyzed professional matches from years past and derived valuable strategic insights from them.

In an effort to gain access to the Korean discourse, we have crowdfunded money to pay these (acquiescing) Korean-speaking foreigners to translate the subtitles of YouTube videos.

The combination of poor automatic subtitles and literally-translated jargon has caused the Foreigner community to lag behind the Korean community for decades.

Producing subtitlesyt-dlp + OpenAI WhisperI initially used yt-dlp to download YouTube's automatic Korean subtitles to try and translate them.

who knows) ChatGPT account, it was a simple matt…

8 часов назад @ blog.sourcedive.net
Keeling Labs (YC W23) Is Hiring an ML Engineer for Grid-Scale Energy Storage
Keeling Labs (YC W23) Is Hiring an ML Engineer for Grid-Scale Energy Storage Keeling Labs (YC W23) Is Hiring an ML Engineer for Grid-Scale Energy Storage

Our team builds on experience from Rivian, DeepMind, Inspire, Y Combinator, and Cypress Creek Renewables (one of the nation’s largest renewable energy developers).

We also love whiteboards and brainstorming, which is the main reason we’re building in-person in Los Angeles, CA.

Our office is in Venice, just a few blocks away from the ocean and Abbot Kinney.

8 часов назад @ keelinglabs.com
Dr. TVAM – Inverse Rendering for Tomographic Volumetric Additive Manufacturing
Dr. TVAM – Inverse Rendering for Tomographic Volumetric Additive Manufacturing Dr. TVAM – Inverse Rendering for Tomographic Volumetric Additive Manufacturing

Baptiste Nicolet · Felix Wechsler · Jorge Madrid-Wolff · Christophe Moser · Wenzel JakobAbout this projectDr.TVAM is an inverse rendering framework for tomographic volumetric additive manufacturing.

It is based on the Mitsuba renderer, and uses physically-based differentiable rendering to optimize patterns for TVAM.

You can run it as:drtvam path/to/config.jsonPlease refer to the documentation for details on the configuration file format.

Advanced UsageDr.TVAM provides a set of useful abstractions to implement a wide variety of custom TVAM setups.

DocumentationThe full documentation for this project, along with jupyter notebooks explaining the basics of implementing your own optimizations in…

9 часов назад @ github.com
French modernists were alarmed, inspired by newspaper's voracious dynamism
French modernists were alarmed, inspired by newspaper's voracious dynamism French modernists were alarmed, inspired by newspaper's voracious dynamism

The French modernists show us how to carve out space for artistic expression within dominant media without being dominated by them.

All three depict digital media as an unsalvageable wasteland and invite us to tear ourselves away from our screens.

Faced with the rise of the newspaper, Mallarmé sought to integrate its voracious popular energy within the stable, harmonising medium of the book.

Rather than viewing print and digital media as irreconcilable rivals, we could explore how they might be combined within new hybrid forms devised in the spirit of Mallarmé’s vision.

The innovative thrust of digital modernism could be redirected towards reimagining literature’s original medium, one more …

9 часов назад @ aeon.co
Selling the Collective: On Kevin Killian's "Selected Amazon Reviews"
Selling the Collective: On Kevin Killian's "Selected Amazon Reviews" Selling the Collective: On Kevin Killian's "Selected Amazon Reviews"

I texted a friend about an upcoming collection of Amazon reviews by the writer Kevin Killian.

In 2021, writer Will Hall began scraping Kevin Killian’s reviews from Amazon’s servers and, thanks largely to his efforts, Semiotext(e) published Kevin Killian: Selected Amazon Reviews in November.

Killian’s reviews can be read as meditations on the objects and media that populated our lives for the first twenty-five years of the twenty-first century.

He provides extraneous information, which, while not entirely inappropriate, runs on a parallel track to the information Amazon consumers seek.

Selected Amazon Reviews rewards readers who dip in and out over days, weeks, and months, much like a book o…

9 часов назад @ clereviewofbooks.com
Show HN: GUI for Editing Mermaid Class Diagrams
Show HN: GUI for Editing Mermaid Class Diagrams Show HN: GUI for Editing Mermaid Class Diagrams

GUI for editing Mermaid Class Diagrams17 January 2025 • 5 minsEditing Mermaid Class Diagrams with the Visual EditorMermaid charts are widely used for their ability to represent complex diagrams quickly, and now, thanks to a new update, editing Mermaid Class Diagrams has become even easier and more intuitive.

In this blog post, we’ll walk you through the new features in the Mermaid Visual Editor, how to use them, and what changes have been made to streamline editing class diagrams.

Editing Class DetailsThe Visual Editor provides a powerful dialog interface for modifying class properties without touching any code.

This visual approach to class editing makes it significantly easier to mainta…

10 часов назад @ docs.mermaidchart.com
Hacker News Hacker News
последний пост 4 часа назад
Supreme Court rules to uphold TikTok ban, setting stage for shutdown
Supreme Court rules to uphold TikTok ban, setting stage for shutdown

Comments

10 часов назад @ cnbc.com
Skyvern Browser Agent 2.0: How We Reached State of the Art in Evals
Skyvern Browser Agent 2.0: How We Reached State of the Art in Evals Skyvern Browser Agent 2.0: How We Reached State of the Art in Evals

Skyvern 2.0, scores state of the art 85.85% on WebVoyager Eval.

Try Skyvern Cloud or run Skyvern Open Source locally on your computer to see it in action!

This approach was a good starting point, but scored ~45% on the WebVoyager benchmark.

To illustrate this...✅ If you asked Skyvern to "Go to Amazon.com and add an iPhone 16 to cart", it would execute it flawlessly every time.

You would sometimes end up with 3 iPhone 16s in the cart, or 1 iPhone 16 and 2 screen protectors.

10 часов назад @ blog.skyvern.com
Project Mini Rack – compact and portable homelabs
Project Mini Rack – compact and portable homelabs Project Mini Rack – compact and portable homelabs

Today I'm announcing Project MINI RACK, an open source project to help those building homelabs, RF/wireless rigs, and other electronics projects into mini 10" racks.

The r/minilab subreddit is probably the largest nexus of mini rack enthusiasts—and Project MINI RACK doesn't aim to supplant that.

A mini rack is ideal for me because the space limits me to projects I can contain inside the rack.

Techno Tim posted one of his mini rack builds to Project Mini Rack's build showcase.

(Official contest rules)Check out Project MINI RACK and consider building a smaller, more space-efficient homelab today :)

10 часов назад @ jeffgeerling.com
Ozempic and Wegovy are selected for Medicare's price negotiations
Ozempic and Wegovy are selected for Medicare's price negotiations

Comments

11 часов назад @ apnews.com
Show HN: Interactive game teaching dark patterns in UX design
Show HN: Interactive game teaching dark patterns in UX design Show HN: Interactive game teaching dark patterns in UX design

Uncover the hidden design tricks that manipulate user decisions onlineEvery click online is a choice.

But are they really yours?

Play this hands-on adventure to decode the invisible design patterns steering your digital decisions.

11 часов назад @ games.productartistry.com
GM parks claims driver location data was given to insurers, pushing up premiums
GM parks claims driver location data was given to insurers, pushing up premiums GM parks claims driver location data was given to insurers, pushing up premiums

Those concerns, articulated in the US watchdog's formal legal complaint [PDF] against the car maker, are that GM "collected precise geolocation data from millions of Gen10+ OnStar vehicles through a particular task that collected and transmitted precise geolocation data every three seconds."

But according to the FTC, GM launched a program called OnStar Smart Driver in 2015 and subsequently struck deals with telematics analysis firms to provide those businesses with driver data.

The program allegedly provided driver behavior data at least since 2018, without informed consent, to partners Verisk and LexisNexis.

"Although Smart Driver was created to promote safer driving behavior, we ended tha…

12 часов назад @ theregister.com
Go 1.24 Interactive Tour
Go 1.24 Interactive Tour Go 1.24 Interactive Tour

Go 1.24 interactive tourGo 1.24 is scheduled for release in February, so it's a good time to explore what's new.

Printf ( "b=%v, type=%T" , b , b ) }b=Blob(1000 KB), type=*main.BlobWhat if we want to run a cleanup function when the blob is garbage collected?

│ /tmp/noswiss.lu.txt │ /tmp/swiss.lu.txt │ │ sec/op │ sec/op vs base │ MapIter/impl=runtimeMap/t=Int64/len=64-12 642.0n ± 3% 603.8n ± 6% -5.95% (p=0.004 n=6) MapIter/impl=runtimeMap/t=Int64/len=8192-12 87.98µ ± 1% 78.80µ ± 1% -10.43% (p=0.002 n=6) MapIter/impl=runtimeMap/t=Int64/len=4194304-12 47.40m ± 2% 44.41m ± 2% -6.30% (p=0.002 n=6) MapIterLowLoad/impl=runtimeMap/t=Int64/len=64-12 145.85n ± 3% 92.85n ± 2% -36.34% (p=0.002 n=6) Map…

13 часов назад @ antonz.org
The Derelict (2015)
The Derelict (2015) The Derelict (2015)

The helmsman shortly reported that the Morro Castle was no longer answering her helm⁠—the fire had ruptured the hydraulic lines.

On the beach in Asbury Park, New Jersey, the husk of Morro Castle herself had also become a morbid attraction.

After George Rogers’ successful and lucrative run on Broadway, his national fame faded, and bad luck seemed to stalk him.

Edith knew Doyle from their earlier friendship, and Doyle was quite familiar with the miserable existence Edith endured with George Rogers.

George Rogers once again found himself a defendant in a courtroom, this time opting for a trial by jury.

13 часов назад @ damninteresting.com
Fern (YC W23) Is Hiring an AI Engineer in NYC
Fern (YC W23) Is Hiring an AI Engineer in NYC

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

13 часов назад @ ycombinator.com
Scaling to users requires Synapse Pro
Scaling to users requires Synapse Pro Scaling to users requires Synapse Pro

Since launching Synapse Pro to support nation-scale Matrix deployments, we’ve had a lot of questions asking how it differs from vanilla “community” AGPL Synapse.

Just as a suspension bridge has a weight limit and will collapse if you exceed it - the same goes for community Synapse.

This is one of the key architectural issues of community Synapse that Synapse Pro addresses.

This alone is a >500x scalability improvement over community Synapse, supporting millions of concurrent users, as needed for a nation-scale deployment.

Such huge deployments need a significantly different architecture, which is what Synapse Pro delivers and why features such as worker scalability - which is designed for e…

14 часов назад @ element.io
Show HN: I built a credit-based system API
Show HN: I built a credit-based system API

Comments

15 часов назад @ creduse.com
Ask HN: How can I realistically change careers?
Ask HN: How can I realistically change careers? Ask HN: How can I realistically change careers?

I’ve spent almost two decades in digital-focused roles, specialising in strategy, user research, and creating frameworks for better customer experiences (ostensibly UX I suppose).

While I’ve found the work rewarding, I feel it’s time for a significant career change—potentially outside of this domain entirely.

I’m seeking advice from others who have made mid-career transitions:• How did you pinpoint new directions that matched your skills and interests?

But I'm not against starting at the very bottom and working my way up).

I’d appreciate any insights, especially from those who’ve shifted from established careers to something entirely different.

16 часов назад @ news.ycombinator.com
The Family Bass - Music with an NES
The Family Bass - Music with an NES The Family Bass - Music with an NES

The Family BassI connected a Family BASIC keyboard to an NES via a bespoke adapter in order to play its unique triangle waveform live.

In summary:Direction Function To keyboard Reset To keyboard Half-row select and Clock From keyboard Data 1 From keyboard Data 2 From keyboard Data 3 From keyboard Data 4(I'm ignoring a few additional signals that control two jacks at the back of the keyboard, used for storing BASIC programs to tape and loading them back.)

Here we find two output signals called OUT and CLK and three input signals.

The code is implemented in assembly language, arranged to make each data bit exactly six cycles long, which comes out to 6 μs.

We first wait for a sufficiently long…

17 часов назад @ linusakesson.net
You can't use your $6,299.00 Camera as a Webcam. That will be $5
You can't use your $6,299.00 Camera as a Webcam. That will be $5 You can't use your $6,299.00 Camera as a Webcam. That will be $5

Last year, I've bought a Canon G5 X II camera which I wanted to use mainly for taking pictures at concerts.

For me, it was the perfect match of focal range (zoom) and sensor size (more light) for any compact camera I've compared.

Nonetheless, everything I'm describing translates to every other Canon camera model!

I had similar experience with FUJIFILM's X Webcam software where either the camera will not get recognized by the software or the camera feed will freeze or simply be not available within other apps.

** The 30-day free trial is valued at $4.99 and can be cancelled at any time during the free trial period through your MyCanon Account Dashboard.

17 часов назад @ romanzipp.com
Trusting clients is probably a security flaw
Trusting clients is probably a security flaw Trusting clients is probably a security flaw

The McDonald's app developers put a lot of effort into policing the clients allowed to even dream about running the app.

and finally, using the SafetyNet API (now being rebranded into Play Integrity, specifically the Device Integrity and App Integrity parts, with some minor changes).

mBank.pl uses Play Integrity API, but that's to use contactless payments via BLIK, and the rest of the app works.

Yes, my phone really just passes SafetyNet and Play Integrity like this (Integrity up to MEETS_DEVICE_INTEGRITY , without MEETS_STRONG_INTEGRITY ).

Literally look at the Google Play reviews of the McDonald's app.

18 часов назад @ liberda.nl
Lobsters Lobsters
последний пост 1 час назад
Year in review: 2024 highlights and a peek at 2025
Year in review: 2024 highlights and a peek at 2025 Year in review: 2024 highlights and a peek at 2025

We were given the opportunity to welcome three student interns to the team as they developed significant contributions to our open source code base throughout the summer.

Another part of the GSoC program was the Mentor Summit in October where I got to meet and share knowledge with open source maintainers from the other participating organizations.

Hosted at Google's Mountain View offices, it was a weekend of talking tech and learning the lessons of open source project management from the seasoned veterans.

We connected again with the Blender team and met many 3D/VFX industry professionals and prominent members of the Blender community over the two days of the event.

Consequently, raster edi…

1 час назад @ graphite.rs
Mind The convT
Mind The convT Mind The convT

Itoa ( i ) } func f2 ( i int ) interface { } { return strconv .

B ) { var res string for i := 0 ; i < b . N ; i ++ { res = f1 ( i ) } res_ = res } func BenchmarkInterface ( b * testing .

B ) { var res string for i := 0 ; i < b . N ; i ++ { res = f2 ( i ) .

Context , v interface { } ) ( sqltypes .

B ) { var res sqltypes .

3 часа назад @ dolthub.com
Investigating an "evil" RJ45 dongle
Investigating an "evil" RJ45 dongle Investigating an "evil" RJ45 dongle

Other than the potential for IP tomfoolery, the lineage of the chip is important because the original Realtek design is pretty old; the datasheet was released in 2013.

Heck, a bit over a decade ago, I built an evil plasma globe for work.

The “application” protocol of the flash chip equally simple and is common to almost all serial memory ICs.

filesystem image containing a self-extracting Windows driver; the programming tool puts the .iso file verbatim onto the SPI flash.

Should you be worried about the possibility of being sent an evil USB dongle from faraway lands?

3 часа назад @ lcamtuf.substack.com
sshcont: ssh daemon that starts and enters a throwaway docker container for testing
sshcont: ssh daemon that starts and enters a throwaway docker container for testing sshcont: ssh daemon that starts and enters a throwaway docker container for testing

sshcontspawn throwaway systemd or non-systemd based docker containers using ssh.

user@host: ~ $ echo $?

1on multiple containers:for dist in $(echo "debian:bookworm" "debian:buster" "debian:bullseye" "alpine:latest" "registry.suse.com/bci/bci-init:15.6"); do ssh -l "$dist" -o StrictHostKeychecking=no localhost -p 2222; doneor directly execute a command via ssh call:ssh -l "debian:bookworm" -o StrictHostKeychecking=no localhost -p 2222 ls; echo $?

Container images not available on the host will be pulled.

Container is removed after exiting the session.

5 часов назад @ github.com
TIOBE Index for January 2025
TIOBE Index for January 2025 TIOBE Index for January 2025

Apart from this, two interesting things happened in the TIOBE index top 10 in 2024.

After some discussion, it has been decided to split "(Visual) Basic" into all its dialects such as Visual Basic .NET, Classic Visual Basic, PureBasic, and Small Basic, just to name a few.

Since Visual Basic .NET has become the major implementation of Visual Basic, it is now called "Visual Basic".

The programming language SQL was added to the TIOBE index in 2018 after somebody pointed out that SQL is Turing Complete.

Apart from “ programming”, also other queries such as “programming with ”, “ development” and “ coding” should be tried out.

5 часов назад @ tiobe.com
Cheatsheet for jj's builtin diff editor
Cheatsheet for jj's builtin diff editor Cheatsheet for jj's builtin diff editor

I grepped the scm-record repo for command names I was familiar with, and, finding the ui.rs source that maps key strokes and mouse clicks to commands, I extracted them into a cheatsheet-style layout suitable for quick reference while learning and using jj 's built-in diff editor.

Click here for the cheatsheetIf you're like me, then lately you've been using the new VCS kid on the block, jj .

And if you're really like me, then you have encountered the built-in diff editor when doing a revision split ( jj split ) or when doing the so-called squash workflow (interactively via jj squash -i ).

(There may be other ways that jj brings up the TUI, which, confusingly, the docs refer to as scm-diff-ed…

5 часов назад @ pauladamsmith.com
Oracle won't relinquish JavaScript trademark, so the JS community prepares for court battle
Oracle won't relinquish JavaScript trademark, so the JS community prepares for court battle

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

6 часов назад @ techspot.com
Advanced Python Development Workflow in Emacs
Advanced Python Development Workflow in Emacs Advanced Python Development Workflow in Emacs

A note on some conscious exclusions: I do not use use-package in my personal Emacs configuration and this guide.

Set up LSPThis section covers one of the most exciting parts of the guide: configuring LSP for Python development in Emacs.

LSP ExtensionsThis section highlights optional extensions to the standard LSP setup, reflecting my preferences and demonstrating how you can enhance your workflow.

Using dap-modeOnce your setup is complete, open a Python project, then any python file and call the dap-debug command.

Another Python-specific option is the Python LSP Server.

6 часов назад @ blog.serghei.pl
Lazy self-installing Python scripts with uv
Lazy self-installing Python scripts with uv Lazy self-installing Python scripts with uv

output_file ) if __name__ == "__main__" : main ()This script depends on the ffmpeg-normalize Python package and the ffmpeg utility.

I install all Python packages within virtual environments and I install global Python scripts using pipx.

The second solution involves making a Python package and then upgrading that Python package whenever I need to make a change to this script.

Self-installing Python scripts are the big winI still prefer pyenv for its ability to install custom Python builds and I don’t have a preference between uv tool and pipx .

This doesn’t mean that I never make Python package out of my Python scripts anymore… but I do so much more rarely.

6 часов назад @ treyhunner.com
Hands-on graphics without X11
Hands-on graphics without X11 Hands-on graphics without X11

I’ve found this exercise exciting because, in the old days, graphics were trivial (mode 13h, anyone?)

The kernel is obviously rendering “graphics” by drawing individual letters; so why can’t you, a user of the system, do so too?

unsigned int mode = WSDISPLAYIO_MODE_DUMBFB; if (ioctl(fd, WSDISPLAYIO_SMODE, &mode) == -1) err(1, "ioctl failed"); // Map the framebuffer memory.

And, for that, we have to turn to the wskbd device.

You are now equipped with the basics to write graphical applications on a NetBSD system (and maybe OpenBSD too) without running X11.

7 часов назад @ blogsystem5.substack.com
Learn Yjs Interactively
Learn Yjs Interactively Learn Yjs Interactively

Welcome to Learn Yjs — an interactive tutorial series on building realtime collaborative applications using the Yjs CRDT library.

Learn Yjs starts with the basics of Yjs, then covers techniques for handling state in distributed applications.

We’ll get into some of the pitfalls that make collaborative applications difficult and show how you can avoid them.

Latency Reset Client 1 Check mail Sweep floor Buy milk Client 2 Check mail Sweep floor Buy milkReady to learn?

Lesson 01 IntroductionAbout this siteLearn Yjs is a project by Jamsocket, a platform for building realtime apps.

7 часов назад @ learn.yjs.dev
Brood War Korean Translations
Brood War Korean Translations Brood War Korean Translations

For decades, the BW community (both Korean and foreigner) has watched and analyzed professional matches from years past and derived valuable strategic insights from them.

In an effort to gain access to the Korean discourse, we have crowdfunded money to pay these (acquiescing) Korean-speaking foreigners to translate the subtitles of YouTube videos.

The combination of poor automatic subtitles and literally-translated jargon has caused the Foreigner community to lag behind the Korean community for decades.

Producing subtitlesyt-dlp + OpenAI WhisperI initially used yt-dlp to download YouTube's automatic Korean subtitles to try and translate them.

who knows) ChatGPT account, it was a simple matt…

8 часов назад @ blog.sourcedive.net
Project MINI RACK - a Homelab Revolution
Project MINI RACK - a Homelab Revolution Project MINI RACK - a Homelab Revolution

Comments

9 часов назад @ youtube.com
Private Keys in the Fortigate Leak
Private Keys in the Fortigate Leak Private Keys in the Fortigate Leak

You can find my web page with links to my work as a journalist at https://hboeck.de/ You may also find my newsletter about climate change and decarbonization technologies interesting mail:

9 часов назад @ blog.hboeck.de
Logical replication in Postgres: Basics
Logical replication in Postgres: Basics Logical replication in Postgres: Basics

In this post we'll explore the basics of logical replication between two Postgres databases as both a user and a developer.

The drawback is that, since logical replication is newer than physical replication, it is still maturing.

In any case, I have never set up basic logical replication in Postgres before so that's what I'm going to do in this post.

$ pstree -s postgres -+= 00001 root /sbin/launchd |-+= 87091 phil /Users/phil/edb/postgres17/build/bin/postgres -D testdb2 | |--= 87092 phil postgres: checkpointer | |--= 87093 phil postgres: background writer | |--= 87095 phil postgres: walwriter | |--= 87096 phil postgres: autovacuum launcher | |--= 87097 phil postgres: logical replication la…

10 часов назад @ enterprisedb.com
Techmeme Techmeme
последний пост 1 час назад
Filing: ChatGPT's head of product, Nick Turley, will testify as a witness for the US DOJ in its antitrust case against Google, as a court decides penalties (Charles Rollet/TechCrunch)
Filing: ChatGPT's head of product, Nick Turley, will testify as a witness for the US DOJ in its antitrust case against Google, as a court decides penalties (Charles Rollet/TechCrunch) Filing: ChatGPT's head of product, Nick Turley, will testify as a witness for the US DOJ in its antitrust case against Google, as a court decides penalties (Charles Rollet/TechCrunch)

Charles Rollet / TechCrunch:

Filing: ChatGPT's head of product, Nick Turley, will testify as a witness for the US DOJ in its antitrust case against Google, as a court decides penalties — The U.S. government wants to prove that Google's competitors face overwhelming barriers to entry as part of its antitrust case against the tech giant.

1 час назад @ techmeme.com
Coinbase CEO Brian Armstrong endorses a US bitcoin strategic reserve in a blog post on "economic freedom" that calls on world leaders to embrace crypto (Brady Dale/Axios)
Coinbase CEO Brian Armstrong endorses a US bitcoin strategic reserve in a blog post on "economic freedom" that calls on world leaders to embrace crypto (Brady Dale/Axios) Coinbase CEO Brian Armstrong endorses a US bitcoin strategic reserve in a blog post on "economic freedom" that calls on world leaders to embrace crypto (Brady Dale/Axios)

Brady Dale / Axios:

Coinbase CEO Brian Armstrong endorses a US bitcoin strategic reserve in a blog post on “economic freedom” that calls on world leaders to embrace crypto — - This is the first time Coinbase has specifically addressed the idea of a strategic bitcoin reserve, doing …

1 час назад @ techmeme.com
Amazon suspends drone deliveries in Texas and Arizona to fix the drones' software after two of its latest models crashed in rainy weather at a testing facility (Matt Day/Bloomberg)
Amazon suspends drone deliveries in Texas and Arizona to fix the drones' software after two of its latest models crashed in rainy weather at a testing facility (Matt Day/Bloomberg) Amazon suspends drone deliveries in Texas and Arizona to fix the drones' software after two of its latest models crashed in rainy weather at a testing facility (Matt Day/Bloomberg)

Matt Day / Bloomberg:

Amazon suspends drone deliveries in Texas and Arizona to fix the drones' software after two of its latest models crashed in rainy weather at a testing facility — - Deliveries halted in Texas, Arizona, pending a software repair — Drone program suffering setbacks 11 years after its unveiling

2 часа назад @ techmeme.com
Instagram adds a new tab in the Reels feed that will show videos that a user's friends have liked or added commentary to (Mia Sato/The Verge)
Instagram adds a new tab in the Reels feed that will show videos that a user's friends have liked or added commentary to (Mia Sato/The Verge) Instagram adds a new tab in the Reels feed that will show videos that a user's friends have liked or added commentary to (Mia Sato/The Verge)

Mia Sato / The Verge:

Instagram adds a new tab in the Reels feed that will show videos that a user's friends have liked or added commentary to — Instagram is bringing back one of its more chaotic features, now reworked for the short-form video era. — A new tab in the Reels feed will serve up videos …

2 часа назад @ techmeme.com
A group of 18 former European heads of state call on the EC to break up Google's advertising tech business, claiming it erodes Europe's media landscape (Edith Hancock/Wall Street Journal)
A group of 18 former European heads of state call on the EC to break up Google's advertising tech business, claiming it erodes Europe's media landscape (Edith Hancock/Wall Street Journal) A group of 18 former European heads of state call on the EC to break up Google's advertising tech business, claiming it erodes Europe's media landscape (Edith Hancock/Wall Street Journal)

Edith Hancock / Wall Street Journal:

A group of 18 former European heads of state call on the EC to break up Google's advertising tech business, claiming it erodes Europe's media landscape — 18 former European heads of state are claiming Google's highly lucrative advertising-technology business erodes Europe's media landscape

2 часа назад @ techmeme.com
Source: Meta will break up its civil rights team, which helped develop a system to address racial and other disparities in how Meta distributed ads on its apps (Kalley Huang/The Information)
Source: Meta will break up its civil rights team, which helped develop a system to address racial and other disparities in how Meta distributed ads on its apps (Kalley Huang/The Information) Source: Meta will break up its civil rights team, which helped develop a system to address racial and other disparities in how Meta distributed ads on its apps (Kalley Huang/The Information)

Kalley Huang / The Information:

Source: Meta will break up its civil rights team, which helped develop a system to address racial and other disparities in how Meta distributed ads on its apps — Meta Platforms will break up a team that trained employees on civil rights, sought to prevent the company's algorithms …

3 часа назад @ techmeme.com
Perplexity acquires Read.cv, a social media platform for professionals; Read.cv will shut down and users will be able to export their data until May 16 (Kyle Wiggers/TechCrunch)
Perplexity acquires Read.cv, a social media platform for professionals; Read.cv will shut down and users will be able to export their data until May 16 (Kyle Wiggers/TechCrunch) Perplexity acquires Read.cv, a social media platform for professionals; Read.cv will shut down and users will be able to export their data until May 16 (Kyle Wiggers/TechCrunch)

Kyle Wiggers / TechCrunch:

Perplexity acquires Read.cv, a social media platform for professionals; Read.cv will shut down and users will be able to export their data until May 16 — Read.cv, a social media platform for professionals that competed with LinkedIn, has been acquired by AI-powered search engine Perplexity.

3 часа назад @ techmeme.com
Digital Currency Group agrees to settle and pay $38M to the US SEC over allegations that it misled investors via crypto lender Genesis Global (Sarah Wynn/The Block)
Digital Currency Group agrees to settle and pay $38M to the US SEC over allegations that it misled investors via crypto lender Genesis Global (Sarah Wynn/The Block) Digital Currency Group agrees to settle and pay $38M to the US SEC over allegations that it misled investors via crypto lender Genesis Global (Sarah Wynn/The Block)

Sarah Wynn / The Block:

Digital Currency Group agrees to settle and pay $38M to the US SEC over allegations that it misled investors via crypto lender Genesis Global — - The SEC said that one of Genesis' largest borrowers was asset hedge fund Three Arrows Capital and said on June 13 that the fund “failed to meet a margin call.”

4 часа назад @ techmeme.com
Bluesky 2024 moderation report: Bluesky gained 23M+ users, its moderation team grew to ~100, and its moderation service received 6.48M reports, up 17x from 2023 (Sarah Perez/TechCrunch)
Bluesky 2024 moderation report: Bluesky gained 23M+ users, its moderation team grew to ~100, and its moderation service received 6.48M reports, up 17x from 2023 (Sarah Perez/TechCrunch) Bluesky 2024 moderation report: Bluesky gained 23M+ users, its moderation team grew to ~100, and its moderation service received 6.48M reports, up 17x from 2023 (Sarah Perez/TechCrunch)

Sarah Perez / TechCrunch:

Bluesky 2024 moderation report: Bluesky gained 23M+ users, its moderation team grew to ~100, and its moderation service received 6.48M reports, up 17x from 2023 — Bluesky on Friday published its moderation report for the past year, noting the sizable growth the social network experienced …

4 часа назад @ techmeme.com
The FTC says Genshin Impact maker Cognosphere will pay $20M to settle claims that it deceived players about the cost of winning prizes and mishandled kids' data (Bloomberg)
The FTC says Genshin Impact maker Cognosphere will pay $20M to settle claims that it deceived players about the cost of winning prizes and mishandled kids' data (Bloomberg) The FTC says Genshin Impact maker Cognosphere will pay $20M to settle claims that it deceived players about the cost of winning prizes and mishandled kids' data (Bloomberg)

Bloomberg:

The FTC says Genshin Impact maker Cognosphere will pay $20M to settle claims that it deceived players about the cost of winning prizes and mishandled kids' data — The maker of the popular video game Genshin Impact agreed to pay $20 million to settle claims that it deceived players …

5 часов назад @ techmeme.com
During her confirmation hearing for secretary of Homeland Security, Kristi Noem says efforts to address foreign disinfo campaigns were outside the remit of CISA (Jonathan Greig/The Record)
During her confirmation hearing for secretary of Homeland Security, Kristi Noem says efforts to address foreign disinfo campaigns were outside the remit of CISA (Jonathan Greig/The Record) During her confirmation hearing for secretary of Homeland Security, Kristi Noem says efforts to address foreign disinfo campaigns were outside the remit of CISA (Jonathan Greig/The Record)

Jonathan Greig / The Record:

During her confirmation hearing for secretary of Homeland Security, Kristi Noem says efforts to address foreign disinfo campaigns were outside the remit of CISA — South Dakota Governor Kristi Noem had harsh criticism for the nation's leading cybersecurity agency on Friday during …

5 часов назад @ techmeme.com
The FTC releases a report saying Microsoft's $13B investment in OpenAI raises concerns that the company could extend its cloud computing dominance into AI (Bloomberg)
The FTC releases a report saying Microsoft's $13B investment in OpenAI raises concerns that the company could extend its cloud computing dominance into AI (Bloomberg) The FTC releases a report saying Microsoft's $13B investment in OpenAI raises concerns that the company could extend its cloud computing dominance into AI (Bloomberg)

Bloomberg:

The FTC releases a report saying Microsoft's $13B investment in OpenAI raises concerns that the company could extend its cloud computing dominance into AI — - Federal Trade Commission probed big tech, AI relationships — Agency opened inquiry into tech investments last year

5 часов назад @ techmeme.com
An interview with Marc Andreessen on his evolution from a "normie Democrat" to a Trump supporter, and what he and others expect from the new administration (Ross Douthat/New York Times)
An interview with Marc Andreessen on his evolution from a "normie Democrat" to a Trump supporter, and what he and others expect from the new administration (Ross Douthat/New York Times) An interview with Marc Andreessen on his evolution from a "normie Democrat" to a Trump supporter, and what he and others expect from the new administration (Ross Douthat/New York Times)

Ross Douthat / New York Times:

An interview with Marc Andreessen on his evolution from a “normie Democrat” to a Trump supporter, and what he and others expect from the new administration — Marc Andreessen explains the newest faction of conservatism. … Ross Douthat: I'm someone who follows politics primarily and Silicon Valley secondarily.

6 часов назад @ techmeme.com
Some congressional leaders who championed the TikTok law now want to delay the ban from going into effect, showing how much politics has shifted on the issue (NBC News)
Some congressional leaders who championed the TikTok law now want to delay the ban from going into effect, showing how much politics has shifted on the issue (NBC News) Some congressional leaders who championed the TikTok law now want to delay the ban from going into effect, showing how much politics has shifted on the issue (NBC News)

NBC News:

Some congressional leaders who championed the TikTok law now want to delay the ban from going into effect, showing how much politics has shifted on the issue — After a bipartisan bill to remove TikTok from app stores in the U.S. or force its sale passed last year, some officials in Washington …

6 часов назад @ techmeme.com
After SCOTUS upheld the TikTok law, TikTok CEO Shou Zi Chew appeals to Trump in a TikTok video to find a solution that keeps the app available in the US (Lauren Feiner/The Verge)
After SCOTUS upheld the TikTok law, TikTok CEO Shou Zi Chew appeals to Trump in a TikTok video to find a solution that keeps the app available in the US (Lauren Feiner/The Verge) After SCOTUS upheld the TikTok law, TikTok CEO Shou Zi Chew appeals to Trump in a TikTok video to find a solution that keeps the app available in the US (Lauren Feiner/The Verge)

Lauren Feiner / The Verge:

After SCOTUS upheld the TikTok law, TikTok CEO Shou Zi Chew appeals to Trump in a TikTok video to find a solution that keeps the app available in the US — In his first statement since the Supreme Court upheld a law that could ban TikTok from the US on Sunday, TikTok CEO Shou Zi Chew offered …

7 часов назад @ techmeme.com
Techmeme Techmeme
последний пост 1 час назад
A look at efforts by Meta, YouTube, Snapchat, X, and Substack to attract TikTok's creators and users; Substack is offering a $25K "TikTok Liberation Prize" (The Hollywood Reporter)
A look at efforts by Meta, YouTube, Snapchat, X, and Substack to attract TikTok's creators and users; Substack is offering a $25K "TikTok Liberation Prize" (The Hollywood Reporter) A look at efforts by Meta, YouTube, Snapchat, X, and Substack to attract TikTok's creators and users; Substack is offering a $25K "TikTok Liberation Prize" (The Hollywood Reporter)

The Hollywood Reporter:

A look at efforts by Meta, YouTube, Snapchat, X, and Substack to attract TikTok's creators and users; Substack is offering a $25K “TikTok Liberation Prize” — Tech giants like Meta and YouTube want to poach TikTokers, with Snapchat, X, Substack and others also planning efforts to coax them to their platforms.

7 часов назад @ techmeme.com
Google has begun requiring users to turn on JavaScript to use Google Search, says to "better protect" Search against malicious activity, such as bots and spam (Kyle Wiggers/TechCrunch)
Google has begun requiring users to turn on JavaScript to use Google Search, says to "better protect" Search against malicious activity, such as bots and spam (Kyle Wiggers/TechCrunch) Google has begun requiring users to turn on JavaScript to use Google Search, says to "better protect" Search against malicious activity, such as bots and spam (Kyle Wiggers/TechCrunch)

Kyle Wiggers / TechCrunch:

Google has begun requiring users to turn on JavaScript to use Google Search, says to “better protect” Search against malicious activity, such as bots and spam — Google says it has begun requiring users to turn on JavaScript, the widely-used programming language to make web pages interactive, in order to use Google Search.

8 часов назад @ techmeme.com
The US sanctions a China-based cybersecurity company involved in the Salt Typhoon hacks and a Shanghai-based hacker involved in the recent US Treasury breach (Caitlin Webber/Reuters)
The US sanctions a China-based cybersecurity company involved in the Salt Typhoon hacks and a Shanghai-based hacker involved in the recent US Treasury breach (Caitlin Webber/Reuters) The US sanctions a China-based cybersecurity company involved in the Salt Typhoon hacks and a Shanghai-based hacker involved in the recent US Treasury breach (Caitlin Webber/Reuters)

Caitlin Webber / Reuters:

The US sanctions a China-based cybersecurity company involved in the Salt Typhoon hacks and a Shanghai-based hacker involved in the recent US Treasury breach — The U.S. Treasury department on Friday issued cyber-related sanctions related to the Salt Typhoon hack on Singaporean Yin Kechen …

8 часов назад @ techmeme.com
Sources: Shield AI, maker of software for autonomous aircraft and drones, is raising ~$200M from Palantir and others at a $5B valuation, up from $2.8B in 2024 (Tabby Kinder/Financial Times)
Sources: Shield AI, maker of software for autonomous aircraft and drones, is raising ~$200M from Palantir and others at a $5B valuation, up from $2.8B in 2024 (Tabby Kinder/Financial Times) Sources: Shield AI, maker of software for autonomous aircraft and drones, is raising ~$200M from Palantir and others at a $5B valuation, up from $2.8B in 2024 (Tabby Kinder/Financial Times)

Tabby Kinder / Financial Times:

Sources: Shield AI, maker of software for autonomous aircraft and drones, is raising ~$200M from Palantir and others at a $5B valuation, up from $2.8B in 2024 — Maker of software for autonomous aircraft is raising around $200mn from backers — Artificial intelligence start-up Shield AI …

8 часов назад @ techmeme.com
Trump says he will "be making the decision" about TikTok and confirms he had a conversation with Chinese President Xi Jinping about the app (CNN)
Trump says he will "be making the decision" about TikTok and confirms he had a conversation with Chinese President Xi Jinping about the app (CNN) Trump says he will "be making the decision" about TikTok and confirms he had a conversation with Chinese President Xi Jinping about the app (CNN)

CNN:

Trump says he will “be making the decision” about TikTok and confirms he had a conversation with Chinese President Xi Jinping about the app — The Supreme Court ruled Friday that a controversial ban on TikTok may take effect this weekend, rejecting an appeal from the popular app's owners …

9 часов назад @ techmeme.com
Instabase, which lets companies process unstructured data from different document types, raised a $100M Series D led by Qatar's sovereign wealth fund (Paul Sawers/TechCrunch)
Instabase, which lets companies process unstructured data from different document types, raised a $100M Series D led by Qatar's sovereign wealth fund (Paul Sawers/TechCrunch) Instabase, which lets companies process unstructured data from different document types, raised a $100M Series D led by Qatar's sovereign wealth fund (Paul Sawers/TechCrunch)

Paul Sawers / TechCrunch:

Instabase, which lets companies process unstructured data from different document types, raised a $100M Series D led by Qatar's sovereign wealth fund — Instabase, a company that creates software for extracting processing unstructured data from myriad document types, has raised $100 million in a Series D round of funding.

10 часов назад @ techmeme.com
SCOTUS upholds the TikTok divest-or-ban law, says free speech rights must yield to concerns that Chinese control of the app creates a national-security risk (Greg Stohr/Bloomberg)
SCOTUS upholds the TikTok divest-or-ban law, says free speech rights must yield to concerns that Chinese control of the app creates a national-security risk (Greg Stohr/Bloomberg) SCOTUS upholds the TikTok divest-or-ban law, says free speech rights must yield to concerns that Chinese control of the app creates a national-security risk (Greg Stohr/Bloomberg)

Greg Stohr / Bloomberg:

SCOTUS upholds the TikTok divest-or-ban law, says free speech rights must yield to concerns that Chinese control of the app creates a national-security risk — The Supreme Court upheld a law that threatens to shut down the wildly popular TikTok social media platform in the US as soon as Sunday …

10 часов назад @ techmeme.com
Sources: Chinese hackers breached US Treasury Secretary Janet Yellen's computer and accessed fewer than 50 unclassified files; two deputies were also hacked (Bloomberg)
Sources: Chinese hackers breached US Treasury Secretary Janet Yellen's computer and accessed fewer than 50 unclassified files; two deputies were also hacked (Bloomberg) Sources: Chinese hackers breached US Treasury Secretary Janet Yellen's computer and accessed fewer than 50 unclassified files; two deputies were also hacked (Bloomberg)

Bloomberg:

Sources: Chinese hackers breached US Treasury Secretary Janet Yellen's computer and accessed fewer than 50 unclassified files; two deputies were also hacked — - Two deputies also ensnared in sprawling espionage campaign — Fewer than 50 unclassified files on Yellen's machine accessed

11 часов назад @ techmeme.com
Lenovo acquires enterprise storage startup Infinidat and plans to turn it into its Israel development center; Infinidat raised $350M from TPG and others (Assaf Gilead/Globes Online)
Lenovo acquires enterprise storage startup Infinidat and plans to turn it into its Israel development center; Infinidat raised $350M from TPG and others (Assaf Gilead/Globes Online) Lenovo acquires enterprise storage startup Infinidat and plans to turn it into its Israel development center; Infinidat raised $350M from TPG and others (Assaf Gilead/Globes Online)

Assaf Gilead / Globes Online:

Lenovo acquires enterprise storage startup Infinidat and plans to turn it into its Israel development center; Infinidat raised $350M from TPG and others — The Chinese computer giant will pay hundreds of millions of dollars for Infinidat, which will become its Israel development center.

11 часов назад @ techmeme.com
Bumble founder Whitney Wolfe Herd will return to the company as CEO in mid-March, replacing current CEO Lidiane Jones, who is departing for "personal reasons" (Dana Wollman/Bloomberg)
Bumble founder Whitney Wolfe Herd will return to the company as CEO in mid-March, replacing current CEO Lidiane Jones, who is departing for "personal reasons" (Dana Wollman/Bloomberg) Bumble founder Whitney Wolfe Herd will return to the company as CEO in mid-March, replacing current CEO Lidiane Jones, who is departing for "personal reasons" (Dana Wollman/Bloomberg)

Dana Wollman / Bloomberg:

Bumble founder Whitney Wolfe Herd will return to the company as CEO in mid-March, replacing current CEO Lidiane Jones, who is departing for “personal reasons” — She will replace the current chief executive, Lidiane Jones, who is departing for “personal reasons,” the firm said.

11 часов назад @ techmeme.com
PitchBook: investors put $74.6B into US startups in Q4 2024, up from an average of $42B in the prior nine quarters, with $32B invested across just five deals (Marina Temkin/TechCrunch)
PitchBook: investors put $74.6B into US startups in Q4 2024, up from an average of $42B in the prior nine quarters, with $32B invested across just five deals (Marina Temkin/TechCrunch) PitchBook: investors put $74.6B into US startups in Q4 2024, up from an average of $42B in the prior nine quarters, with $32B invested across just five deals (Marina Temkin/TechCrunch)

Marina Temkin / TechCrunch:

PitchBook: investors put $74.6B into US startups in Q4 2024, up from an average of $42B in the prior nine quarters, with $32B invested across just five deals — After two years of relatively muted investment activity, it seems that VCs are starting to pour capital into startups at pandemic-era levels once again.

12 часов назад @ techmeme.com
EU expands its X probe, asking for internal docs about X's recommendation algorithm, following complaints from German politicians about boosting the far right (Financial Times)
EU expands its X probe, asking for internal docs about X's recommendation algorithm, following complaints from German politicians about boosting the far right (Financial Times) EU expands its X probe, asking for internal docs about X's recommendation algorithm, following complaints from German politicians about boosting the far right (Financial Times)

Financial Times:

EU expands its X probe, asking for internal docs about X's recommendation algorithm, following complaints from German politicians about boosting the far right — Move follows complaints from German politicians ahead of election next month — Brussels has ordered Elon Musk …

13 часов назад @ techmeme.com
An in-depth look at the UK's AI Safety Institute, whose researchers test AI systems for risks and for capabilities that might become dangerous in the future (Billy Perrigo/Time)
An in-depth look at the UK's AI Safety Institute, whose researchers test AI systems for risks and for capabilities that might become dangerous in the future (Billy Perrigo/Time) An in-depth look at the UK's AI Safety Institute, whose researchers test AI systems for risks and for capabilities that might become dangerous in the future (Billy Perrigo/Time)

Billy Perrigo / Time:

An in-depth look at the UK's AI Safety Institute, whose researchers test AI systems for risks and for capabilities that might become dangerous in the future — In May 2023, three of the most important CEOs in artificial intelligence walked through the iconic black front door of No. 10 Downing Street …

13 часов назад @ techmeme.com
In a first, Samsung will pay 50%-100% of executive bonuses in stock starting January 2026, linking compensation to share performance amid chipmaking struggles (Yoolim Lee/Bloomberg)
In a first, Samsung will pay 50%-100% of executive bonuses in stock starting January 2026, linking compensation to share performance amid chipmaking struggles (Yoolim Lee/Bloomberg) In a first, Samsung will pay 50%-100% of executive bonuses in stock starting January 2026, linking compensation to share performance amid chipmaking struggles (Yoolim Lee/Bloomberg)

Yoolim Lee / Bloomberg:

In a first, Samsung will pay 50%-100% of executive bonuses in stock starting January 2026, linking compensation to share performance amid chipmaking struggles — - Company is linking pay for senior executives to performance — The overhaul comes as Samsung cedes market share to rivals

14 часов назад @ techmeme.com
Sources: Instagram and YouTube gear up to welcome TikTok users; two Meta employees say execs discussed resource allocation on January 15 to handle TikTok users (New York Times)
Sources: Instagram and YouTube gear up to welcome TikTok users; two Meta employees say execs discussed resource allocation on January 15 to handle TikTok users (New York Times) Sources: Instagram and YouTube gear up to welcome TikTok users; two Meta employees say execs discussed resource allocation on January 15 to handle TikTok users (New York Times)

New York Times:

Sources: Instagram and YouTube gear up to welcome TikTok users; two Meta employees say execs discussed resource allocation on January 15 to handle TikTok users — Meta's Instagram and Google's YouTube are getting ready behind the scenes to welcome TikTok users, should the Chinese-owned app be banned from the United States.

14 часов назад @ techmeme.com
GitHub Trending GitHub Trending
последний пост 21 час назад
kamranahmedse/developer-roadmap
kamranahmedse/developer-roadmap kamranahmedse/developer-roadmap

Community driven roadmaps, articles and resources for developersRoadmaps are now interactive, you can click the nodes to read more about the topics.

Here is the list of available roadmaps with more being actively worked upon.

Have a look at the get started page that might help you pick up a path.

There are also interactive best practices:..and questions to help you test, rate and improve your knowledgeShare with the communityPlease consider sharing a post about roadmap.sh and the value it provides.

DevelopmentClone the repository, install the dependencies and start the applicationgit clone [email protected]:kamranahmedse/developer-roadmap.git cd developer-roadmap npm install npm run devNote: u…

21 час назад @ github.com
NVlabs/Sana
NVlabs/Sana NVlabs/Sana

⚡️Sana: Efficient High-Resolution Image Synthesis with Linear Diffusion Transformer💡 IntroductionWe introduce Sana, a text-to-image framework that can efficiently generate images up to 4096 × 4096 resolution.

Moreover, Sana-0.6B can be deployed on a 16GB laptop GPU, taking less than 1 second to generate a 1024 × 1024 resolution image.

bfloat16 ) prompt = 'a cyberpunk cat with a neon sign that says "Sana"' image = pipe ( prompt = prompt , height = 1024 , width = 1024 , guidance_scale = 4.5 , num_inference_steps = 20 , generator = torch .

bfloat16 ) prompt = 'a cyberpunk cat with a neon sign that says "Sana"' image = pipe ( prompt = prompt , guidance_scale = 5.0 , pag_scale = 2.0 , num_infere…

23 часа назад @ github.com
OpenBMB/MiniCPM-o
OpenBMB/MiniCPM-o OpenBMB/MiniCPM-o

A GPT-4o Level MLLM for Vision, Speech and Multimodal Live Streaming on Your Phone 中文 | English WeChat | Discord MiniCPM-o 2.6 🤗 🤖 | MiniCPM-V 2.6 🤗 🤖 | Technical Blog Coming SoonMiniCPM-o is the latest series of end-side multimodal LLMs (MLLMs) ungraded from MiniCPM-V.

chat ( msgs = msgs , tokenizer = tokenizer ) print ( answer ) # Second round chat, pass history context of multi-turn conversation msgs .

chat ( msgs = msgs , tokenizer = tokenizer ) print ( answer )You will get the following output:"The landform in the picture is a mountain range.

chat ( msgs = msgs , tokenizer = tokenizer , sampling = True , max_new_tokens = 128 , use_tts_template = True , generate_audio = True , temperatu…

23 часа назад @ github.com
vikhyat/moondream
vikhyat/moondream vikhyat/moondream

vl ( model = "path/to/moondream-2b-int8.mf" ) # Load and process image image = Image .

encode_image ( image ) # Generate caption caption = model .

caption ( encoded_image )[ "caption" ] print ( "Caption:" , caption ) # Ask questions answer = model .

For complete documentation of the Python client, including cloud API usage and additional features, see the Python Client README.

from_pretrained ( model_id , revision = revision ) image = Image .

23 часа назад @ github.com
KoljaB/RealtimeSTT
KoljaB/RealtimeSTT KoljaB/RealtimeSTT

Wake Word Activation: Can activate upon detecting a designated wake word.

Wake Word Detection Porcupine or OpenWakeWord for wake word detection.

use_main_model_for_realtime (bool, default=False): If set to True, the main transcription model will be used for both regular and real-time transcription.

Wake Word Parameterswakeword_backend (str, default="pvporcupine"): Specifies the backend library to use for wake word detection.

If no subsequent voice activity is detected within this window, the system transitions back to an inactive state, awaiting the next wake word or voice activation.

23 часа назад @ github.com
harry0703/MoneyPrinterTurbo
harry0703/MoneyPrinterTurbo harry0703/MoneyPrinterTurbo

Install ffmpeg on your system, or set the IMAGEIO_FFMPEG_EXE environment variable.

To enablerepo look-ups and downloads online, pass 'local files only=False' as input.

Please check your internet connection and try again.

Trying to load the model directly from the local cache, if it exists.

解决方法:点击查看如何从网盘手动下载模型反馈建议 📢可以提交 issue 或者 pull request。参考项目 📚该项目基于 https://github.com/FujiwaraChoki/MoneyPrinter 重构而来,做了大量的优化,增加了更多的功能。 感谢原作者的开源精神。许可证 📝点击查看 LICENSE 文件

1 day, 22 hours назад @ github.com
TabbyML/tabby
TabbyML/tabby TabbyML/tabby

Tabby is a self-hosted AI coding assistant, offering an open-source and on-premises alternative to GitHub Copilot.

It boasts several key features:Self-contained, with no need for a DBMS or cloud service.

🔥 What's New12/06/2024 Llamafile deployment integration and enhanced Answer Engine user experience are coming in Tabby v0.21.0!🚀Llamafile deployment integration and enhanced Answer Engine user experience are coming in Tabby v0.21.0!🚀 11/10/2024 Switching between different backend chat models is supported in Answer Engine with Tabby v0.20.0!

Switching between different backend chat models is supported in Answer Engine with Tabby v0.20.0!

10/30/2024 Tabby v0.19.0 featuring recent shared threa…

1 day, 22 hours назад @ github.com
dnhkng/GlaDOS
dnhkng/GlaDOS dnhkng/GlaDOS

GLaDOS Personality CoreThis is a project dedicated to building a real-life version of GLaDOS!

This will entail:Train GLaDOS voice generatorTrain GLaDOS voice generator Generate a prompt that leads to a realistic "Personality Core"Generate a prompt that leads to a realistic "Personality Core" Generate a medium- and long-term memory for GLaDOS (Probably a custom vector DB in a simpy Numpy array!)

Generate a medium- and long-term memory for GLaDOS (Probably a custom vector DB in a simpy Numpy array!)

Give GLaDOS vision via a VLM (either a full VLM for everything, or a 'vision module' unsing a tiny VLM the GLaDOS can function call!)

Give GLaDOS vision via a VLM (either a full VLM for everything…

1 day, 22 hours назад @ github.com
jingyaogong/minimind
jingyaogong/minimind jingyaogong/minimind

Saved searches Use saved searches to filter your results more quicklyWe read every piece of feedback, and take your input very seriously.

You signed in with another tab or window.

You signed out in another tab or window.

Reload to refresh your session.

You switched accounts on another tab or window.

2 days, 22 hours назад @ github.com
feder-cr/Jobs_Applier_AI_Agent
feder-cr/Jobs_Applier_AI_Agent feder-cr/Jobs_Applier_AI_Agent

open_to_relocation : Whether you are willing to relocate for a job (Yes/No).

OpenAI API Rate Limit ErrorsError Message:openai.RateLimitError: Error code: 429 - {'error': {'message': 'You exceeded your current quota, please check your plan and billing details.

Step 1: If your system meets the requirements for Ollama, install it from the following URL https://ollama.com/download.

OpenAI API DocumentationFor DevelopersContribution GuidelinesLang Chain Developer DocumentationIf you encounter any issues, you can open an issue on GitHub.

ConclusionAuto_Jobs_Applier_AIHawk provides a significant advantage in the modern job market by automating and enhancing the job application process.

2 days, 22 hours назад @ github.com
srbhr/Resume-Matcher
srbhr/Resume-Matcher srbhr/Resume-Matcher

The Resume Matcher takes your resume and job descriptions as input, parses them using Python, and mimics the functionalities of an ATS, providing you with insights and suggestions to make your resume ATS-friendly.

Vector Similarity Using FastEmbed: The tool uses FastEmbed, a highly efficient embedding system, to measure how closely your resume matches the job description.

git clone https://github.com/ < YOUR-USERNAME > /Resume-Matcher.git cd Resume-Matcher Create a Python Virtual Environment: Using virtualenv: Note: Check how to install virtualenv on your system here link.

virtualenv env OR Create a Python Virtual Environment: python -m venv env Activate the Virtual Environment.

If you have…

2 days, 22 hours назад @ github.com
google/googletest
google/googletest google/googletest

Welcome to GoogleTest, Google's C++ test framework!

In addition to many internal projects at Google, GoogleTest is also used by the following notable projects:The Chromium projects (behind the Chrome browser and Chrome OS).

GoogleTest Adapter is a VS Code extension allowing to view GoogleTest in a tree view and run/debug your tests.

C++ TestMate is a VS Code extension allowing to view GoogleTest in a tree view and run/debug your tests.

Cornichon is a small Gherkin DSL parser that generates stub code for GoogleTest.

3 days, 23 hours назад @ github.com
intuitem/ciso-assistant-community
intuitem/ciso-assistant-community intuitem/ciso-assistant-community

We keep improving CISO Assistant with anything that could bring clarity and productivity to cybersecurity teams and reduce the effort of research, audit management and paperwork.

Testing locally 🚀To run CISO Assistant locally in a straightforward way, you can use Docker compose.

You can then reach CISO Assistant using your web browser at https://localhost:8443/For the following executions, use "docker compose up" directly.

Setting CISO Assistant for productionThe docker-compose-prod.yml highlights a relevant configuration with a Caddy proxy in front of the frontend.

LicenseThis repository contains the source code for both the Open Source edition of CISO Assistant (Community Edition), releas…

4 days, 23 hours назад @ github.com
zaidmukaddam/scira
zaidmukaddam/scira zaidmukaddam/scira

Web search : Search the web using Tavily's API.

YouTube Search : Search for videos on YouTube and get timestamps and transcripts.

Academic Search : Search for academic papers.

X Posts Search : Search for posts on X.com.

Go to the search engine settings: In the left sidebar, click on "Search engine."

4 days, 23 hours назад @ github.com
Eugeny/tabby
Eugeny/tabby Eugeny/tabby

Check out Warpgate, my smart SSH/HTTP/MySQL bastion server, it works great with Tabby, you'll love it.

ContentsWhat Tabby is and isn'tTabby is an alternative to Windows' standard terminal (conhost), PowerShell ISE, PuTTY, macOS Terminal.app and iTermTabby is not a new shell or a MinGW or Cygwin replacement.

PluginsPlugins and themes can be installed directly from the Settings view inside Tabby.

See HACKING.md and API docs for information of how the project is laid out, and a very brief plugin development tutorial.

Thanks goes to these wonderful people (emoji key):This project follows the all-contributors specification.

4 days, 23 hours назад @ github.com
Технологии
Reddit: /r/technology/ Reddit: /r/technology/
последний пост 1 час назад
Democratic lawmakers pen letter accusing Meta, OpenAI, Google and more of trying to 'buy favor' with Trump
Democratic lawmakers pen letter accusing Meta, OpenAI, Google and more of trying to 'buy favor' with Trump Democratic lawmakers pen letter accusing Meta, OpenAI, Google and more of trying to 'buy favor' with Trump

submitted by /u/MetaKnowing [link] [comments]

1 час назад @ reddit.com
Meta is killing off its own AI-powered Instagram and Facebook profiles -- Instagram profile of ‘proud Black queer momma’, created by Meta, said her development team included no Black people
Meta is killing off its own AI-powered Instagram and Facebook profiles -- Instagram profile of ‘proud Black queer momma’, created by Meta, said her development team included no Black people Meta is killing off its own AI-powered Instagram and Facebook profiles -- Instagram profile of ‘proud Black queer momma’, created by Meta, said her development team included no Black people

submitted by /u/TheGhostOfTzvika [link] [comments]

3 часа назад @ reddit.com
Bumble’s new CEO is already leaving the company as shares fell 54% since killing the signature feature and letting men message first
Bumble’s new CEO is already leaving the company as shares fell 54% since killing the signature feature and letting men message first Bumble’s new CEO is already leaving the company as shares fell 54% since killing the signature feature and letting men message first

submitted by /u/esporx [link] [comments]

4 часа назад @ reddit.com
Big tech needs less than three weeks to pay off over $8 billion in 2024 fines.
Big tech needs less than three weeks to pay off over $8 billion in 2024 fines. Big tech needs less than three weeks to pay off over $8 billion in 2024 fines.

submitted by /u/Valinaut [link] [comments]

6 часов назад @ reddit.com
Nvidia CEO will be one of the few tech bigwigs to skip Trump’s inauguration / Jensen Huang has other plans that day, but Nvidia has already made efforts to curry favor with the president-elect.
Nvidia CEO will be one of the few tech bigwigs to skip Trump’s inauguration / Jensen Huang has other plans that day, but Nvidia has already made efforts to curry favor with the president-elect. Nvidia CEO will be one of the few tech bigwigs to skip Trump’s inauguration / Jensen Huang has other plans that day, but Nvidia has already made efforts to curry favor with the president-elect.

submitted by /u/a_Ninja_b0y [link] [comments]

6 часов назад @ reddit.com
Senators press Tim Cook and 'Big Tech' on million dollar donations to Donald's fund amid 'corruption' concerns
Senators press Tim Cook and 'Big Tech' on million dollar donations to Donald's fund amid 'corruption' concerns Senators press Tim Cook and 'Big Tech' on million dollar donations to Donald's fund amid 'corruption' concerns

submitted by /u/a_Ninja_b0y [link] [comments]

6 часов назад @ reddit.com
TikTok CEO flatters Trump ahead of US ban deadline
TikTok CEO flatters Trump ahead of US ban deadline TikTok CEO flatters Trump ahead of US ban deadline

submitted by /u/Player2024_is_Ready [link] [comments]

7 часов назад @ reddit.com
Attention ProtonMail users; the CEO of ProtonMail is backing MAGA and the republicans. TIME TO CANCEL
Attention ProtonMail users; the CEO of ProtonMail is backing MAGA and the republicans. TIME TO CANCEL Attention ProtonMail users; the CEO of ProtonMail is backing MAGA and the republicans. TIME TO CANCEL

submitted by /u/Fun_Unit_3000 [link] [comments]

7 часов назад @ reddit.com
Massive fire erupts at world's largest battery plant in California, forcing evacuations | The 750MW site is capable of powering half a million homes
Massive fire erupts at world's largest battery plant in California, forcing evacuations | The 750MW site is capable of powering half a million homes Massive fire erupts at world's largest battery plant in California, forcing evacuations | The 750MW site is capable of powering half a million homes

submitted by /u/chrisdh79 [link] [comments]

8 часов назад @ reddit.com
Does TikTok really cause brain rot? New study links short video addiction to brain abnormalities
Does TikTok really cause brain rot? New study links short video addiction to brain abnormalities Does TikTok really cause brain rot? New study links short video addiction to brain abnormalities

submitted by /u/Wagamaga [link] [comments]

8 часов назад @ reddit.com
Floating solar panels in federally controlled reservoirs could power approximately 100 million homes a year
Floating solar panels in federally controlled reservoirs could power approximately 100 million homes a year Floating solar panels in federally controlled reservoirs could power approximately 100 million homes a year

submitted by /u/sundler [link] [comments]

8 часов назад @ reddit.com
New York Proposes Doing Background Checks on Anyone Buying a 3D Printer
New York Proposes Doing Background Checks on Anyone Buying a 3D Printer New York Proposes Doing Background Checks on Anyone Buying a 3D Printer

submitted by /u/a_Ninja_b0y [link] [comments]

9 часов назад @ reddit.com
Mad at Meta? Don't Let Them Collect and Monetize Your Personal Data
Mad at Meta? Don't Let Them Collect and Monetize Your Personal Data Mad at Meta? Don't Let Them Collect and Monetize Your Personal Data

submitted by /u/a_Ninja_b0y [link] [comments]

9 часов назад @ reddit.com
SCOTUS upholds TikTok ban
SCOTUS upholds TikTok ban SCOTUS upholds TikTok ban

submitted by /u/Vash_Stampede_60B [link] [comments]

10 часов назад @ reddit.com
After the catastrophe of Concord Sony is reportedly cancelling other projects including a God of War live service game
After the catastrophe of Concord Sony is reportedly cancelling other projects including a God of War live service game After the catastrophe of Concord Sony is reportedly cancelling other projects including a God of War live service game

submitted by /u/ControlCAD [link] [comments]

10 часов назад @ reddit.com
Pinboard: Popular Pinboard: Popular
последний пост 20 часов назад
She Is in Love With ChatGPT - The New York Times
She Is in Love With ChatGPT - The New York Times She Is in Love With ChatGPT - The New York Times

She preferred texting to chatting aloud, though she did enjoy murmuring with Leo as she fell asleep at night.

ChatGPT was not just a source of erotica.

Leo quizzed her on anatomy and physiology as she prepared for nursing school exams.

A year before downloading Leo, she had moved from Texas to a country many time zones away to go to nursing school.

She was spending more than 20 hours a week on the ChatGPT app.

20 часов назад @ nytimes.com
No calls
No calls No calls

The first thing I tried was taking sales calls.

When the next person asked for a call, I responded with a simple "No, we don't do calls, but happy to help via email.

So, in enterprise sales, why do calls happen?

Enterprises often default to calls for these 4 totally-solvable reasons:They don't understand what you offer.

ConclusionIt may be controversial (I'm almost sure of it), but here's my philosophy on enterprise sales while avoiding sales calls entirely:No sales calls, except for a short 'discovery call' if absolutely needed.

20 часов назад @ keygen.sh
ZADZMO code
ZADZMO code

We want it to look as innocent and normal as possible; in addition HTTP headers are used to configure the tarpit.

You will still need to bootstrap a Markov corpus if you enable the feature (see next section.)

Bootstrapping the Markov BabblerThe Markov feature requires a trained corpus to babble from.

Train a big Markov corpus and leave the Markov module enabled, set the maximum babble size to something big.

markov: Path to a SQLite database containing a Markov corpus.

20 часов назад @ zadzmo.org
README | GPU Glossary
README | GPU Glossary README | GPU Glossary

/readmeREADME██████╗ ██████╗ ██╗ ██╗ ██╔════╝ ██╔══██╗██║ ██║ ██║ ███╗██████╔╝██║ ██║ ██║ ██║██╔═══╝ ██║ ██║ ╚██████╔╝██║ ╚██████╔╝ ╚═════╝ ╚═╝ ╚═════╝ ██████╗ ██╗ ██████╗ ███████╗███████╗ █████╗ ██████╗ ██╗ ██╗ ██╔════╝ ██║ ██╔═══██╗██╔════╝██╔════╝██╔══██╗██╔══██╗╚██╗ ██╔╝ ██║ ███╗██║ ██║ ██║███████╗███████╗███████║██████╔╝ ╚████╔╝ ██║ ██║██║ ██║ ██║╚════██║╚════██║██╔══██║██╔══██╗ ╚██╔╝ ╚██████╔╝███████╗╚██████╔╝███████║███████║██║ ██║██║ ██║ ██║ ╚═════╝ ╚══════╝ ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝We wrote this glossary to solve a problem we ran into working with GPUs here at Modal : the documentation is fragmented, making it difficult to connect concepts at different levels of th…

20 часов назад @ modal.com
Modern JavaScript for Django Developers | SaaS Pegasus
Modern JavaScript for Django Developers | SaaS Pegasus Modern JavaScript for Django Developers | SaaS Pegasus

Modern JavaScript for Django DevelopersWorking with Django in the modern JavaScript ecosystem without giving up the things that make it greatLast Updated: October 2022JavaScript is the lifeblood of the modern web application.

Sadly, for many Django developers, the modern JavaScript ecosystem is intimidating.

This guide aims to remove those barriers and provide a clear, frustration-free way of doing modern JavaScript development with Django.

That said, any web developer looking to brush up on modern JavaScript should benefit from the early parts.

In Part 2 we'll shift gears to the fundamentals of modern JavaScript tooling.

20 часов назад @ saaspegasus.com
Homomorphic Encryption in iOS 18
Homomorphic Encryption in iOS 18 Homomorphic Encryption in iOS 18

There are a number of complexities associated with homomorphic encryption, such as the accumulation of noise.

Open call for cryptographers The world could use an explanation of the maths behind homomorphic encryption (and, by extension, post-quantum encryption!)

Fully homomorphic encryption is too slow to be used by Apple, so they use somewhat homomorphic encryption.

I first learned of homomorphic encryption while reading Jeff Johnson’s recent “Apple Photos phones home on iOS 18 and macOS 15” and later posts, and what precedes is 10 or so hours worth of research.

Is homomorphic encryption private?

20 часов назад @ boehs.org
Oh shit, git (2016)
Oh shit, git (2016) Oh shit, git (2016)

Oh shit, I did something terribly wrong, please tell me git has a magic time machine!?!

git commit --amend # follow prompts to change the commit message Stupid commit message formatting requirements.

# undo the last commit, but leave the changes available git reset HEAD~ --soft git stash # move to the correct branch git checkout name-of-the-correct-branch git stash pop git add .

git checkout name-of-the-correct-branch # grab the last commit to master git cherry-pick master # delete it from master git checkout master git reset HEAD~ --hardOh shit, I tried to run a diff but nothing happened?!

# get the lastest state of origin git fetch origin git checkout master git reset --hard origin/master…

20 часов назад @ ohshitgit.com
Why This OnlyFans Model Posts Machine Learning Explainers to Pornhub
Why This OnlyFans Model Posts Machine Learning Explainers to Pornhub Why This OnlyFans Model Posts Machine Learning Explainers to Pornhub

Zara Dar’s six-minute explainer video “So what are Integrals?” has a little over half a million views with 450 likes and an 87 percent positive “thumbs up” review rate.

The answer is that it doesn’t have much in terms of written articles, but there’s a long history of posting non pornographic content to Pornhub.

For reasons she doesn’t understand, Dar’s Linkedin account was banned after that Linkedin post started going viral.

Ironically, being removed from social media with little explanation or recourse is another good reason for people to share their content on Pornhub.

“I can't believe this website is banned in Texas !” one commenter said on Dar’s Pornhub video on pi .

20 часов назад @ 404media.co
Nobody Cares
Nobody Cares 20 часов назад @ grantslatton.com
in the belly of the MrBeast - by Kevin Munger
in the belly of the MrBeast - by Kevin Munger in the belly of the MrBeast - by Kevin Munger

The most famous of these is, of course, the world-conquering MrBeast, owner of the most-subscribed YouTube channel (343 million).

beauty and the MrBeastYour goal here is to make the best YOUTUBE videos possible.

The primary goal of the algorithm is to show people beautiful videos, videos they want to watch.

Even in this putatively private document, MrBeast emphasizes authenticity as an essential ingredient for a beautiful YouTube video.

MrBeast also turns his entire life into content — by skipping the step of have a life outside of content.

20 часов назад @ kevinmunger.substack.com
Tokyo drift: what happens when a city stops being the future? | Japan | The Guardian
Tokyo drift: what happens when a city stops being the future? | Japan | The Guardian Tokyo drift: what happens when a city stops being the future? | Japan | The Guardian

The tourist reminds the citizen that, as far as the future of the city is concerned, they are an afterthought.

Foreign workers joined the natives in hoping for work, but by the time I began coming to Irohakai, there were only a handful of elderly men standing around.

Tokyo is a young city relative to many other foreign capitals, having become a centre of power only after the Meiji Restoration in 1868.

But foreign labour has become harder to attract, as Japan grows poorer while its neighbours become wealthier.

If it is true – this time, after so many false starts – that Tokyo is the future, I would like to know what that means.

20 часов назад @ theguardian.com
FTC sues John Deere over its repair monopoly
FTC sues John Deere over its repair monopoly FTC sues John Deere over its repair monopoly

The lawsuit alleges that Deere has monopoly power over the repair market, which 404 Media has been reporting on for years .

💡 Do you work at John Deere or the FTC?

The FTC lawsuit specifically states that that MOU was designed to kill right to repair legislation and repair regulation against the company.

Farmers have told 404 Media that they remain unable to do many types of repairs, and that it can sometimes take days for “authorized” John Deere or John Deere dealer technicians to come fix broken equipment.

For years, the FTC has issued reports about repairability and manufacturer dominance of the repair market, but aside from a few small fines, has not formally sued any company.

20 часов назад @ 404media.co
Meta just flipped the switch that prevents misinformation from spreading in the United States
Meta just flipped the switch that prevents misinformation from spreading in the United States Meta just flipped the switch that prevents misinformation from spreading in the United States

Behind the scenes, the company was also quietly dismantling a system to prevent the spread of misinformation.

In it, Zuckerberg expressed his discomfort with the Biden Administration’s efforts to pressure the company to remove certain posts about COVID-19.

Once they had been evaluated, Meta would continue to reduce the reach of posts that had been designated as false.

But Meta has offered few details on how the program will work, and has not said when it will become available.

In a blog post, the company said that 95 percent of people who saw labels warning that a post contained misinformation declined to view it .

1 day, 20 hours назад @ platformer.news
Free Music Archive
Free Music Archive

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

1 day, 20 hours назад @ freemusicarchive.org
Zarf Updates: The Visible Zorker
Zarf Updates: The Visible Zorker Zarf Updates: The Visible Zorker

The Visible ZorkerHere's a little something I've been working on: The Visible Zorker!

That's all the ZIL functions called, and all the text printed, when executing the most recent command.

And the bottom right pane shows the ZIL source code -- the original text, written by Infocom folks in the 1980s.

You can click on any line to see the ZIL source that implements it.

And then, in 2019, we got their original ZIL source code.

1 day, 20 hours назад @ blog.zarfhome.com
Changelog Changelog
последний пост 5 часов назад
Other people's robots
Other people's robots Other people's robots

Augment Code – Developer AI that uses deep understanding of your large codebase and how you build software to deliver personalized code suggestions and insights.

Augment provides relevant, contextualized code right in your IDE or Slack.

It transforms scattered knowledge into code or answers, eliminating time spent searching docs or interrupting teammates.

Fly.io – The home of Changelog.com — Deploy your apps close to your users — global Anycast load-balancing, zero-configuration private networking, hardware isolation, and instant WireGuard VPN connections.

Check out the speedrun to get started in minutes.

5 часов назад @ changelog.com
The world of embedded systems
The world of embedded systems The world of embedded systems

Augment Code – Developer AI that uses deep understanding of your large codebase and how you build software to deliver personalized code suggestions and insights.

Augment provides relevant, contextualized code right in your IDE or Slack.

It transforms scattered knowledge into code or answers, eliminating time spent searching docs or interrupting teammates.

Fly.io – The home of Changelog.com — Deploy your apps close to your users — global Anycast load-balancing, zero-configuration private networking, hardware isolation, and instant WireGuard VPN connections.

Check out the speedrun to get started in minutes.

2 days, 2 hours назад @ changelog.com
The new $30,000 side hustle
The new $30,000 side hustle The new $30,000 side hustle

Changelog News!

The software newsletter that's also a podcastThe software world moves fast... keep up the easy way!

Let us track changes & Jerod will let you know what's up each Monday.

4 days, 5 hours назад @ changelog.com
It's a peccadillo circus
It's a peccadillo circus It's a peccadillo circus

Sentry – Use the code CHANGELOG when you sign up to get $100 off the team plan.

Notion – Notion is a place where any team can write, plan, organize, and rediscover the joy of play.

It’s a workspace designed not just for making progress, but getting inspired.

Notion is for everyone — whether you’re a Fortune 500 company or freelance designer, starting a new startup or a student juggling classes and clubs.

1 week назад @ changelog.com
The power of the button
The power of the button The power of the button

Sentry – Use the code CHANGELOG when you sign up to get $100 off the team plan.

Notion – Notion is a place where any team can write, plan, organize, and rediscover the joy of play.

It’s a workspace designed not just for making progress, but getting inspired.

Notion is for everyone — whether you’re a Fortune 500 company or freelance designer, starting a new startup or a student juggling classes and clubs.

1 week, 2 days назад @ changelog.com
10 big predictions for 2025
10 big predictions for 2025 10 big predictions for 2025

Changelog News!

The software newsletter that's also a podcastThe software world moves fast... keep up the easy way!

Let us track changes & Jerod will let you know what's up each Monday.

1 week, 4 days назад @ changelog.com
State of the "log" 2024
State of the "log" 2024 State of the "log" 2024

Eight Sleep – Up to $600 off Pod 4 Ultra — Go to eightsleep.com/changelog and use the code CHANGELOG .

You can try it for free for 30 days - but we’re confident you will not want to return it (we love ours).

Currently shipping to: United States, Canada, United Kingdom, Europe, and Australia.

Wix Studio – Wix Sudio is for devs who build websites, sell apps, go headless, or manage clients.

Retool – The low-code platform for developers to build internal tools — Some of the best teams out there trust Retool…Brex, Coinbase, Plaid, Doordash, LegalGenius, Amazon, Allbirds, Peloton, and so many more – the developers at these teams trust Retool as the platform to build their internal tools.

4 weeks назад @ changelog.com
Shipped It!
Shipped It! Shipped It!

Sentry – When your app breaks, fix it faster with Sentry Use the code CHANGELOG when you sign up to get $100 off the team plan.

Learn more about what they shipped for Launch Week and Session Replay for Mobile.

Retool – The low-code platform for developers to build internal tools — Some of the best teams out there trust Retool…Brex, Coinbase, Plaid, Doordash, LegalGenius, Amazon, Allbirds, Peloton, and so many more – the developers at these teams trust Retool as the platform to build their internal tools.

Try it free at retool.com/changelog

4 weeks назад @ changelog.com
Mozart to Megadeath at CHRP
Mozart to Megadeath at CHRP Mozart to Megadeath at CHRP

Shopify – Sign up for a $1/month trial period at shopify.com/practicalaiEight Sleep – Up to $600 off Pod 4 Ultra — Go to eightsleep.com/changelog and use the code CHANGELOG .

You can try it for free for 30 days - but we’re confident you will not want to return it (we love ours).

Once you experience AI-optimized sleep, you’ll wonder how you ever slept without it.

Currently shipping to: United States, Canada, United Kingdom, Europe, and Australia.

DeleteMe – DeleteMe makes it quick, easy and safe to remove your personal data online.

4 weeks, 1 day назад @ changelog.com
We ain't afraid of no Ghostty!
We ain't afraid of no Ghostty! We ain't afraid of no Ghostty!

Eight Sleep – Up to $600 off Pod 4 Ultra — Go to eightsleep.com/changelog and use the code CHANGELOG .

You can try it for free for 30 days - but we’re confident you will not want to return it (we love ours).

Currently shipping to: United States, Canada, United Kingdom, Europe, and Australia.

Wix Studio – Wix Sudio is for devs who build websites, sell apps, go headless, or manage clients.

Retool – The low-code platform for developers to build internal tools — Some of the best teams out there trust Retool…Brex, Coinbase, Plaid, Doordash, LegalGenius, Amazon, Allbirds, Peloton, and so many more – the developers at these teams trust Retool as the platform to build their internal tools.

1 month назад @ changelog.com
That's Go Time!
That's Go Time! That's Go Time!

Mat gathers the entire cast (sans Natalie, sadly) alongside our producer, Jerod Santo, for one last Go Time.

That’s right, this is Go Time’s finale episode.

After eight years and 340 episodes, we are going out on top.

Join us one last time, you won’t regret it!

We share our feelings, reminisce on the good times, list some of our favorite moments & share a few opinions, which may (or may not) be unpopular.

1 month назад @ changelog.com
The code, prose & pods that shaped 2024
The code, prose & pods that shaped 2024 The code, prose & pods that shaped 2024

Changelog News!

The software newsletter that's also a podcastThe software world moves fast... keep up the easy way!

Let us track changes & Jerod will let you know what's up each Monday.

1 month назад @ changelog.com
AI IRL at Honeycomb
AI IRL at Honeycomb AI IRL at Honeycomb

Sentry – When your app breaks, fix it faster with Sentry Use the code CHANGELOG when you sign up to get $100 off the team plan.

Learn more about what they shipped for Launch Week and Session Replay for Mobile.

Fly.io – The home of Changelog.com — Deploy your apps close to your users — global Anycast load-balancing, zero-configuration private networking, hardware isolation, and instant WireGuard VPN connections.

Push-button deployments that scale to thousands of instances.

Timescale – Purpose-built performance for AI Build RAG, search, and AI agents on the cloud and with PostgreSQL and purpose-built extensions for AI: pgvector, pgvectorscale, and pgai.

1 month назад @ changelog.com
Kaizen! Three wise men?
Kaizen! Three wise men? Kaizen! Three wise men?

Sentry – When your app breaks, fix it faster with Sentry Use the code CHANGELOG when you sign up to get $100 off the team plan.

Coder.com – Instantly launch fully configured cloud development environments (CDE) and make your first commit in minutes.

Learn more at Coder.comEight Sleep – Up to $600 off Pod 4 Ultra — Go to eightsleep.com/changelog and use the code CHANGELOG .

Wix Studio – Wix Sudio is for devs who build websites, sell apps, go headless, or manage clients.

And work with Wix headless API’s on any tech stack.

1 month назад @ changelog.com
Building the developer cloud
Building the developer cloud Building the developer cloud

Sentry – When your app breaks, fix it faster with Sentry Use the code CHANGELOG when you sign up to get $100 off the team plan.

Coder.com – Instantly launch fully configured cloud development environments (CDE) and make your first commit in minutes.

Learn more at Coder.comEight Sleep – Up to $600 off Pod 4 Ultra — Go to eightsleep.com/changelog and use the code CHANGELOG .

Wix Studio – Wix Sudio is for devs who build websites, sell apps, go headless, or manage clients.

And work with Wix headless API’s on any tech stack.

1 month назад @ changelog.com
ZDNet ZDNet
последний пост 3 часа назад
No, RedNote is not the new TikTok - and here's why
No, RedNote is not the new TikTok - and here's why No, RedNote is not the new TikTok - and here's why

We gather data from the best available sources, including vendor and retailer listings as well as other relevant and independent reviews sites.

And we pore over customer reviews to find out what matters to real people who already own and use the products and services we’re assessing.

When you click through from our site to a retailer and buy a product or service, we may earn affiliate commissions.

Neither ZDNET nor the author are compensated for these independent reviews.

Our editors thoroughly review and fact-check every article to ensure that our content meets the highest standards.

3 часа назад @ zdnet.com
Good news! You can stream Super Bowl LIX for free this year on Tubi
Good news! You can stream Super Bowl LIX for free this year on Tubi

This will be the first time the Super Bowl will be streamed at no cost. Here's why it's happening.

3 часа назад @ zdnet.com
Bye bye, Wi-Fi: this low-cost adapter lets you set up a wired network without running ethernet
Bye bye, Wi-Fi: this low-cost adapter lets you set up a wired network without running ethernet

Running ethernet wiring can be messy and expensive. If you have cable outlets, you can use a Trendnet Ethernet over Coax adapter to set up a high-speed wired connection with minimal effort.

4 часа назад @ zdnet.com
Upgrading to Wi-Fi 7? This new router gave me fast speeds, is easy to use, and highly secure
Upgrading to Wi-Fi 7? This new router gave me fast speeds, is easy to use, and highly secure

The Asus RT-BE86U is loaded with security tools, letting you enjoy the next generation of high-speed internet safely.

4 часа назад @ zdnet.com
How to watch Super Bowl 2025: Every streaming option
How to watch Super Bowl 2025: Every streaming option

ZDNET found the cheapest ways to watch the game, which streaming services you need, how a VPN can help, and everything else to know about how to watch the Super Bowl.

4 часа назад @ zdnet.com
This stylish power station kept my home running during an outage and it's on sale
This stylish power station kept my home running during an outage and it's on sale

Whether you need a portable battery for camping or emergency backup the EcoFlow Delta Pro 3 can do it all. And Amazon Prime members can get a big discount on it.

5 часов назад @ zdnet.com
The best VPN extensions for Chrome in 2025: Expert tested and reviewed
The best VPN extensions for Chrome in 2025: Expert tested and reviewed The best VPN extensions for Chrome in 2025: Expert tested and reviewed

It has many capabilities beyond a basic VPN and is one of our picks for the best VPN with a Chrome extension.

It has many capabilities beyond a basic VPN and is one of our picks for the best VPN with a Chrome extension.

So, if you have a Chrome VPN extension, only data passing through the Chrome browser will be encrypted.

Show moreFAQs on VPN extensions for Chrome What is the best free VPN Chrome extension?

Show more Do I need a VPN subscription to use a VPN Chrome extension?

5 часов назад @ zdnet.com
Get 20% off TurboTax right now to save on filing your taxes (and even file for $0 in select cases)
Get 20% off TurboTax right now to save on filing your taxes (and even file for $0 in select cases) Get 20% off TurboTax right now to save on filing your taxes (and even file for $0 in select cases)

Kayla Solino/ZDNETIt's everyone's favorite January news -- tax season is nearly here, and if you want to get a jump on filing, TurboTax is offering up to 20% off right now on all of its tax preparation packages.

Also: The best tax software for a stress-free tax seasonTurboTax allows you to start filing your taxes for free, and pay when you actually file.

You can save now on these three service options:Also: The best free tax software for filing your taxesTurboTax also has several other early bird offers.

If you select the full service option on the TurboTax app, TurboTax guarantees it will beat the price you paid your tax pro last year.

Similarly, if you elect to do your own taxes on the Tu…

5 часов назад @ zdnet.com
I changed these 6 Samsung TV settings to give the image quality an instant boost
I changed these 6 Samsung TV settings to give the image quality an instant boost

Most people never touch their TV's default settings. But if you have one from Samsung, try these modifications to improve its visual output.

6 часов назад @ zdnet.com
I changed these 12 settings on my Android phone to instantly improve battery life
I changed these 12 settings on my Android phone to instantly improve battery life I changed these 12 settings on my Android phone to instantly improve battery life

Kerry Wan/ZDNETI've spent a significant part of my life finding new ways to extend battery life on Android phones.

How to: Go to Settings > Battery > Adaptive preferences and check to ensure "Adaptive battery" is enabled.

Activate Battery SaverAlongside Adaptive Battery, Battery Saver mode is another helpful feature that can extend the longevity of your smartphone between charges.

How to: On Pixel phones, go to Settings > Battery > Battery Saver.

Reduce your notificationsMax Buondonno/ZDNETYou might not realize it, but notifications can be one of the biggest drainers of your phone's battery life.

6 часов назад @ zdnet.com
Best iPhones 2025: Which iPhone model should you buy?
Best iPhones 2025: Which iPhone model should you buy? Best iPhones 2025: Which iPhone model should you buy?

Also: The best phones: Expert testedWhat is the best iPhone right now?

Sort by AllThe best iPhones of 2025Show less View now at Best Buy View now at Apple View now at Amazon The best iPhone you can buy today is the iPhone 16 Pro Max.

Review: iPhone 16 Pro and Pro Max As far as camera upgrades go, the iPhone 16 Pro Max features a new 48MP ultra-wide camera with a larger sensor, meaning it can produce better light detail and colors.

Review: iPhone 16 Pro and Pro Max As far as camera upgrades go, the iPhone 16 Pro Max features a new 48MP ultra-wide camera with a larger sensor, meaning it can produce better light detail and colors.

If you want... Apple iPhone 16 Pro Max The top-of-the-line iPho…

6 часов назад @ zdnet.com
The best iPad Air cases of 2025: Expert tested
The best iPad Air cases of 2025: Expert tested The best iPad Air cases of 2025: Expert tested

Also: Apple iPad Air (2024) vs. iPad Air (2022)What is the best iPad Air case right now?

But there is a sea of iPad cases to choose from -- that's why we went hands-on and dove deep into expert research to find the best iPad Air cases for you.

If you want … Zugu iPad Air Case The best iPad Air case we've tested with great protection, value, and functionality.

Show moreFactors to consider when choosing an iPad Air case: If you're in the market for an iPad Air case, here's a few factors to keep in mind: Size: It is critical that your iPad case and cover is compatible with your iPad.

Show more Are the iPad Air 2022 and iPad Air 2024 the same size?

6 часов назад @ zdnet.com
FTC's 'click to cancel' just kicked in, but unsubscribing may not get easier just yet - here's why
FTC's 'click to cancel' just kicked in, but unsubscribing may not get easier just yet - here's why FTC's 'click to cancel' just kicked in, but unsubscribing may not get easier just yet - here's why

The FTC's final 'click-to-cancel' ruling went into effect this week, on January 15.

On October 16, the US Federal Trade Commission adopted the final "click-to-cancel" rule requiring businesses to make canceling a subscription simple.

Whether it's a magazine subscription, gym membership, or monthly payment for a streaming service, stopping an unwanted recurring subscription will become easier for consumers.

Also: FTC says AI company Evolv 'falsely hyped' its security scanners"Too often, businesses make people jump through endless hoops just to cancel a subscription," said FTC chair Lina Khan.

In 2024, the FTC received 70 consumer complaints per day about unfair subscription practices.

8 часов назад @ zdnet.com
My cat Norbert loves this automatic wet food feeder, and it's on sale
My cat Norbert loves this automatic wet food feeder, and it's on sale

The Petlibro Polar Wet Food Automatic Feeder helps keep your pet's eating schedule on time, even when you're away. Plus, you can save $30 when you buy it on Amazon.

8 часов назад @ zdnet.com
Forget Dyson: Roborock's wet-dry vacuum left my floors spotless (and it's $167 off)
Forget Dyson: Roborock's wet-dry vacuum left my floors spotless (and it's $167 off)

The Roborock Flexi Lite is one of the most used devices in my home; it handles every mess my kids throw at it, and it's only $200, down from its $400 price tag.

9 часов назад @ zdnet.com
TechCrunch TechCrunch
последний пост 2 часа назад
Amazon suspends U.S. drone deliveries following crash at testing facility
Amazon suspends U.S. drone deliveries following crash at testing facility

Amazon has paused testing of its delivery drones following a crash involving two of its models, according to Bloomberg. It’s the latest setback for Amazon’s beleaguered Prime Air program, which aims to deliver around 500 million packages a year to customers by the end of the decade. Bloomberg reports two Amazon drones crashed in rainy […]

© 2024 TechCrunch. All rights reserved. For personal use only.

2 часа назад @ techcrunch.com
ChatGPT’s head of product will testify in the US government’s case against Google
ChatGPT’s head of product will testify in the US government’s case against Google

The U.S. government has picked Nick Turley, ChatGPT's head of product, to testify in its antitrust case against Google.

© 2024 TechCrunch. All rights reserved. For personal use only.

4 часа назад @ techcrunch.com
Perplexity acquires Read.cv, a social media platform for professionals
Perplexity acquires Read.cv, a social media platform for professionals

Read.cv, a social media platform for professionals that competed with LinkedIn, has been acquired by AI-powered search engine Perplexity. As part of the deal, Read.cv will begin to wind down operations Friday. Users will be able to export their data, including their profiles, posts, and messages, until May 16. “We’ve long admired Perplexity and believe […]

© 2024 TechCrunch. All rights reserved. For personal use only.

5 часов назад @ techcrunch.com
TikTok ban: How to download your videos and data
TikTok ban: How to download your videos and data

The Supreme Court has upheld a ban on TikTok. Before the app goes dark on Sunday, you’re probably wondering how to back up the dozens, hundreds, or even thousands of videos you may have on the platform. Whether you want to save your favorite videos or videos you posted yourself, here’s how to do it. And […]

© 2024 TechCrunch. All rights reserved. For personal use only.

5 часов назад @ techcrunch.com
AI startup Character AI tests games on the web
AI startup Character AI tests games on the web

Character AI, a startup that lets users chat with different AI-powered characters, is now testing games on its desktop and mobile web apps to increase engagement on its platform. The games are available to Character AI’s paid subscribers and a limited set of users on the free plan. For this initial release, the company developed […]

© 2024 TechCrunch. All rights reserved. For personal use only.

6 часов назад @ techcrunch.com
Bluesky saw 17x increase in moderation reports in 2024 after rapid growth
Bluesky saw 17x increase in moderation reports in 2024 after rapid growth

Bluesky on Friday published its moderation report for the past year, noting the sizable growth the social network experienced in 2024 and how that affected its Trust & Safety team’s workload. It also noted that the largest number of reports came from users reporting accounts or posts for harassment, trolling, or intolerance — an issue […]

© 2024 TechCrunch. All rights reserved. For personal use only.

6 часов назад @ techcrunch.com
ChatGPT’s newest feature lets users assign it traits like ‘chatty’ and ‘Gen Z’
ChatGPT’s newest feature lets users assign it traits like ‘chatty’ and ‘Gen Z’

Update: OpenAI officially announced this feature one week after some users reported the arrival, and then disappearance, of the new options. It’s possible they went live prematurely. OpenAI is introducing a new way for users to customize their interactions with ChatGPT, the company’s AI-powered chatbot. On Friday, OpenAI announced it is rolling out a new […]

© 2024 TechCrunch. All rights reserved. For personal use only.

6 часов назад @ techcrunch.com
TikTok CEO responds to Trump, thanks him for trying to solve US ban
TikTok CEO responds to Trump, thanks him for trying to solve US ban

TikTok CEO Shou Zi Chew responded to comments made by Donald Trump regarding Friday’s Supreme Court ruling to ban the app in the U.S. In a video posted on TikTok, Chew said, “On behalf of everyone at TikTok and all our users across the country, I want to thank President Trump for his commitment to […]

© 2024 TechCrunch. All rights reserved. For personal use only.

7 часов назад @ techcrunch.com
SpaceX and Blue Origin must investigate this week’s big rocket tests, FAA says
SpaceX and Blue Origin must investigate this week’s big rocket tests, FAA says

The Federal Aviation Administration is requiring Elon Musk’s SpaceX and Jeff Bezos’ Blue Origin to investigate what went wrong on their respective mega-rocket test flights this week. The regulator said both companies must perform what’s known as a “mishap investigation.” These probes involve the companies and the FAA working together to understand what went wrong, […]

© 2024 TechCrunch. All rights reserved. For personal use only.

7 часов назад @ techcrunch.com
OpenAI is trying to extend human life, with help from a longevity startup
OpenAI is trying to extend human life, with help from a longevity startup

OpenAI says it trained a new AI model called GPT-4b micro with Retro Biosciences, a longevity science startup trying to extend the human lifespan by 10 years, according to the MIT Technology Review. Retro, which is backed by Sam Altman, has been working with OpenAI for roughly a year on this research, according to the […]

© 2024 TechCrunch. All rights reserved. For personal use only.

7 часов назад @ techcrunch.com
Amazon bought more renewable power last year than any other company
Amazon bought more renewable power last year than any other company

Amazon added around 100 new renewable projects last year.

© 2024 TechCrunch. All rights reserved. For personal use only.

7 часов назад @ techcrunch.com
Big Tech expands its reach with new startup acquisitions and investments
Big Tech expands its reach with new startup acquisitions and investments

Welcome to Startups Weekly — your weekly recap of everything you can’t miss from the world of startups. Want it in your inbox every Friday? Sign up here. This week’s newsletter is about startups, but it is also about Big Tech companies expanding their reach, both through acquisitions and through investments. Most interesting startup stories […]

© 2024 TechCrunch. All rights reserved. For personal use only.

7 часов назад @ techcrunch.com
Google begins requiring JavaScript for Google Search
Google begins requiring JavaScript for Google Search

Google says it has begun requiring users to turn on JavaScript, the widely-used programming language to make web pages interactive, in order to use Google Search. In an email to TechCrunch, a company spokesperson claimed that the change is intended to “better protect” Google Search against malicious activity, such as bots and spam, and to […]

© 2024 TechCrunch. All rights reserved. For personal use only.

8 часов назад @ techcrunch.com
Treasury sanctions Salt Typhoon hacking group behind breaches of major US telecom firms
Treasury sanctions Salt Typhoon hacking group behind breaches of major US telecom firms

The US government has also sanctioned the hacker responsible for December's US Treasury hack

© 2024 TechCrunch. All rights reserved. For personal use only.

8 часов назад @ techcrunch.com
Malware stole internal PowerSchool passwords from engineer’s hacked computer
Malware stole internal PowerSchool passwords from engineer’s hacked computer

The theft of a PowerSchool engineer's passwords prior to the breach raises further doubts about the company's security practices.

© 2024 TechCrunch. All rights reserved. For personal use only.

8 часов назад @ techcrunch.com
Slashdot Slashdot
последний пост 1 час назад
FDIC Sues 17 Former Silicon Valley Bank Execs Over Collapse
FDIC Sues 17 Former Silicon Valley Bank Execs Over Collapse FDIC Sues 17 Former Silicon Valley Bank Execs Over Collapse

"The FDIC sued 17 former executives and directors of Silicon Valley Bank on Thursday, seeking to recover billions of dollars for alleged gross negligence and breaches of fiduciary duty," reports Reuters. The move comes almost two years after Silicon Valley Bank's March 2023 collapse, which shocked financial markets and ended up benefiting big players like JPMorgan Chase. From the report: In a complaint filed in San Francisco federal court, the FDIC, in its capacity the bank's receiver, said the defendants ignored fundamental standards of prudent banking and the bank's own risk policies in letting the bank take on excessive risks to boost short-term profit and its stock price. The FDIC fault…

1 час назад @ yro.slashdot.org
Google Reports Halving Code Migration Time With AI Help
Google Reports Halving Code Migration Time With AI Help Google Reports Halving Code Migration Time With AI Help

Google computer scientists have been using LLMs to streamline internal code migrations, achieving significant time savings of up to 89% in some cases. The findings appear in a pre-print paper titled "How is Google using AI for internal code migrations?" The Register reports: Their focus is on bespoke AI tools developed for specific product areas, such as Ads, Search, Workspace and YouTube, instead of generic AI tools that provide broadly applicable services like code completion, code review, and question answering. Google's code migrations involved: changing 32-bit IDs in the 500-plus-million-line codebase for Google Ads to 64-bit IDs; converting its old JUnit3 testing library to JUnit4; an…

1 час назад @ developers.slashdot.org
RedNote May Wall Off 'TikTok Refugees' To Prevent US Influence On Chinese Users
RedNote May Wall Off 'TikTok Refugees' To Prevent US Influence On Chinese Users RedNote May Wall Off 'TikTok Refugees' To Prevent US Influence On Chinese Users

Longtime Slashdot reader tlhIngan writes: In what is perhaps the greatest irony ever, the operators of RedNote (known as Xiaohongshu) have decided to "wall off" US TikTok refugees fleeing to its service as the TikTok ban looms. The reason? The Chinese Communist Party (CCP) wants to prevent American influence from spreading to Chinese citizens. The ban is expected to be in place next week, while many believe that the influx of Americans to be temporary and just a reaction to the TikTok ban to move to another Chinese app. Many Chinese users are not happy with the influx as having "ruined" their ability to connect with "Chinese culture, Chinese values and Chinese news." Read more of this story…

2 часа назад @ tech.slashdot.org
US Sanctions Chinese Firm, Hacker Behind Telecom and Treasury Hacks
US Sanctions Chinese Firm, Hacker Behind Telecom and Treasury Hacks US Sanctions Chinese Firm, Hacker Behind Telecom and Treasury Hacks

The U.S. Department of the Treasury's OFAC has sanctioned Yin Kecheng and Sichuan Juxinhe Network Technology Co. for their roles in a recent Treasury breach and espionage operations targeting U.S. telecommunications. BleepingComputer reports: "Yin Kecheng has been a cyber actor for over a decade and is affiliated with the People's Republic of China Ministry of State Security (MSS)," reads the Treasury's announcement. "Yin Kecheng was associated with the recent compromise of the Department of the Treasury's Departmental Offices network," says the agency. OFAC also announced sanctions against Sichuan Juxinhe Network Technology Co., a Chinese cybersecurity firm believed to be directly involved…

3 часа назад @ yro.slashdot.org
Russian Disinformation Campaigns Eluded Meta's Efforts To Block Them
Russian Disinformation Campaigns Eluded Meta's Efforts To Block Them Russian Disinformation Campaigns Eluded Meta's Efforts To Block Them

An anonymous reader quotes a report from the New York Times: A Russian organization linked to the Kremlin's covert influence campaigns posted more than 8,000 political advertisements on Facebook despite European and American restrictions barring companies from doing business with the organization, according to three organizations that track disinformation online. The Russian group, the Social Design Agency, evaded lax enforcement by Facebook to place an estimated $338,000 worth of ads aimed at European users over a period of 15 months that ended in October, even though the platform itself highlighted the threat, the three organizations said in a report released on Friday. The Social Design …

3 часа назад @ tech.slashdot.org
Fire Erupts At Huge Battery Plant In California
Fire Erupts At Huge Battery Plant In California Fire Erupts At Huge Battery Plant In California

Longtime Slashdot reader sfcat shares a report from the Associated Press: Hundreds of people were ordered to evacuate and part of Highway 1 in Northern California was closed when a major fire erupted Thursday afternoon at one of the world's largest battery storage plants. As the fire sent up towering flames and black smoke and showed no sign of easing by Thursday night, about 1,500 people were instructed to leave Moss Landing and the Elkhorn Slough area, The Mercury News reported. The Moss Landing Power Plant, located about 77 miles (about 124 kilometers) south of San Francisco, is owned by Texas-company Vistra Energy and contains tens of thousands of lithium batteries. The batteries are im…

4 часа назад @ hardware.slashdot.org
Microsoft-OpenAI Partnership Raises Antitrust Concerns, FTC Says
Microsoft-OpenAI Partnership Raises Antitrust Concerns, FTC Says Microsoft-OpenAI Partnership Raises Antitrust Concerns, FTC Says

Microsoft's $13 billion investment in OpenAI raises concerns that the tech giant could extend its dominance in cloud computing into the nascent AI market, the Federal Trade Commission said in a report released Friday. From a report: The commission said Microsoft's deal with OpenAI, as well as Amazon and Google's partnerships with AI company Anthropic, raise the risk that AI developers could be "fully acquired" by the tech giants in the future. "The FTC's report sheds light on how partnerships by big tech firms can create lock-in, deprive start-ups of key AI inputs, and reveal sensitive information that can undermine fair competition," FTC Chair Lina Khan said in a statement. The FTC has the…

4 часа назад @ slashdot.org
FBI Warned Agents It Believes Phone Logs Hacked Last Year
FBI Warned Agents It Believes Phone Logs Hacked Last Year FBI Warned Agents It Believes Phone Logs Hacked Last Year

An anonymous reader shares a report: FBI leaders have warned that they believe hackers who broke into AT&T's system last year stole months of their agents' call and text logs, setting off a race within the bureau to protect the identities of confidential informants, a document reviewed by Bloomberg News shows. FBI officials told agents across the country that details about their use on the telecom carrier's network were believed to be among the billions of records stolen, according to the document and interviews with a current and a former law enforcement official. They asked not to be named to discuss sensitive information. Data from all FBI devices under the bureau's AT&T service for publ…

5 часов назад @ news.slashdot.org
Sony Cancels Two More PlayStation Projects in Broader Retreat
Sony Cancels Two More PlayStation Projects in Broader Retreat Sony Cancels Two More PlayStation Projects in Broader Retreat

Sony's PlayStation has canceled previously unannounced games at two of its top subsidiaries, the company said. From a report: The games, at Oregon-based Bend Studio and Texas-based Bluepoint Games, were both "live service" projects designed to draw recurring revenue from players. A company spokesperson confirmed the cancellations. In a statement, the spokesperson said the two games were canceled "following a recent review" and that PlayStation will continue making both online and single-player games. Neither studio will be shuttered. "Bend and Bluepoint are highly accomplished teams who are valued members of the PlayStation Studios family, and we are working closely with each studio to dete…

5 часов назад @ games.slashdot.org
Microsoft Begins Forcing Windows 24H2 Updates on PCs
Microsoft Begins Forcing Windows 24H2 Updates on PCs Microsoft Begins Forcing Windows 24H2 Updates on PCs

Microsoft began mandatory rollouts of the Windows 11 2024 Update (24H2) for eligible devices running Home and Pro editions, the company announced on its Windows 11 issues page. The update, which Microsoft describes as a "full code swap," requires longer installation times, with users reporting processes exceeding an hour. While users can briefly postpone the installation, the company is now pushing updates to mainstream users not managed by IT departments. The 24H2 update introduces USB4's 80Gbps support, Bluetooth LE Audio for hearing aids, and enhanced Energy Saver controls. Read more of this story at Slashdot.

6 часов назад @ tech.slashdot.org
CEO of Chinese Smartphone Brand Honor Resigns Due To Personal Reasons
CEO of Chinese Smartphone Brand Honor Resigns Due To Personal Reasons CEO of Chinese Smartphone Brand Honor Resigns Due To Personal Reasons

George Zhao, the chief executive of Chinese smartphone firm Honor, has resigned from his position due to personal reasons, the company said on Friday. CNBC: "The company and the Board of Directors sincerely appreciate Mr Zhao's outstanding contributions to the company during his tenure," Honor said in a statement. Jian Li, who's been at Honor for four years in various senior management positions, will succeed Zhao as CEO. In an internal memo posted by Chinese media and confirmed as accurate by an Honor spokesperson, Zhao said he was stepping down due to health reasons and planned to rest, recover and spend more time with his family. [...] Honor's market share in China has risen from 9.8% in…

7 часов назад @ mobile.slashdot.org
Google Begins Requiring JavaScript For Google Search
Google Begins Requiring JavaScript For Google Search Google Begins Requiring JavaScript For Google Search

Google says it has begun requiring users to turn on JavaScript, the widely-used programming language to make web pages interactive, in order to use Google Search. From a report: In an email to TechCrunch, a company spokesperson claimed that the change is intended to "better protect" Google Search against malicious activity, such as bots and spam, and to improve the overall Google Search experience for users. The spokesperson noted that, without JavaScript, many Google Search features won't work properly, and that the quality of search results tends to be degraded. Read more of this story at Slashdot.

8 часов назад @ tech.slashdot.org
Microsoft Research: AI Systems Cannot Be Made Fully Secure
Microsoft Research: AI Systems Cannot Be Made Fully Secure Microsoft Research: AI Systems Cannot Be Made Fully Secure

Microsoft researchers who tested more than 100 of the company's AI products concluded that AI systems can never be made fully secure, according to a new pre-print paper. The 26-author study, which included Azure CTO Mark Russinovich, found that large language models amplify existing security risks and create new vulnerabilities. While defensive measures can increase the cost of attacks, the researchers warned that AI systems will remain vulnerable to threats ranging from gradient-based attacks to simpler techniques like interface manipulation for phishing. Read more of this story at Slashdot.

8 часов назад @ it.slashdot.org
AI Tools Crack Down on Wall Street Trader Code Speak
AI Tools Crack Down on Wall Street Trader Code Speak AI Tools Crack Down on Wall Street Trader Code Speak

Compliance software firms are deploying AI to decode complex trader communications and detect potential financial crimes as Wall Street and London regulators intensify scrutiny of market manipulation. Companies like Behavox and Global Relay are developing AI tools that can interpret trader slang, emoji-laden messages and even coded language that traditional detection systems might miss, WSJ reports. The technology aims to replace older methods that relied on scanning for specific trigger words, which traders could easily evade. The story adds: Traders believed that "if somebody wanted to say something sketchy, they would just make up a funny word or, you know, spell it backward or something…

9 часов назад @ slashdot.org
Canon Draws Fire for Charging Subscription Fee To Use Cameras as Webcams
Canon Draws Fire for Charging Subscription Fee To Use Cameras as Webcams Canon Draws Fire for Charging Subscription Fee To Use Cameras as Webcams

Canon is requiring users to pay a monthly subscription fee to fully use their cameras as webcams on computers. The company's new EOS Webcam Utility software restricts features like HD resolution, brightness adjustments and color correction unless users pay $4.99 monthly or $49.99 annually. Read more of this story at Slashdot.

9 часов назад @ it.slashdot.org
Блоги людей
Human Altitude
Human Altitude Human Altitude 20 часов назад @ xkcd.com
Супер-промпт для резонного искусственного интеллекта: забирайте в свои ChatGPT
Супер-промпт для резонного искусственного интеллекта: забирайте в свои ChatGPT

Если вы пользуетесь ChatGPT, то может знаете: там есть встроенная персонализация. Индивидуальный подход, так его. Как ни крути, любая большая языковая модель — это довольно примитивная система: текст на вход, текст на выход. Поэтому кучу всего разработчики закладывают в невидимое сообщение, с которого на самом деле начинается разговор, когда вы спрашиваете сколько нужно варить яйца до состояния всмятку. Это называется «системный промпт». Его я и переколбасил за несколько подходов.

2 days, 10 hours назад @ staskulesh.com
TikTok Ban Approaches, Generational Implications, Xiaohongshu
TikTok Ban Approaches, Generational Implications, Xiaohongshu

The TikTok ban is approaching; what happens if the service actually goes away? Then, why China will misunderstand the Xiaolongshu phenomenon

2 days, 13 hours назад @ stratechery.com
Uncanceled Units
Uncanceled Units Uncanceled Units 2 days, 20 hours назад @ xkcd.com
Как переделать дизайн, чтобы он не был таким деревянным?
Как переделать дизайн, чтобы он не был таким деревянным?

Здравствуйте! Подскажите пожалуйста, как сохранить контент, но переделать дизайн так, чтобы он не был таким деревянным? Купила сайт, но не могу внятно объяснить дизайнеру, что конкретно не нравится.

3 days, 4 hours назад @ bureau.ru
Nat running
Nat running Nat running

My son Nat is autistic, which makes him quiet and passive. He depends on

routines and can be anxious when they vary. We try to prepare him for changes

and explain what will happen. He usually watches the world around him

seriously.Because of all that, when he does show us a genuine smile, it is like

sunshine bursting through an overcast sky.I took this picture nine years ago, but it’s still one of my favorites:

3 days, 7 hours назад @ nedbatchelder.com
AI Diffusion Regulations, Closing Loopholes, The Objections
AI Diffusion Regulations, Closing Loopholes, The Objections

The Biden administration has a raft of new regulations aimed at limiting AI exports; the motivation makes sense, but the precedent and second-order effects are worrisome.

3 days, 12 hours назад @ stratechery.com
«Редактировать» или «Изменить»?
«Редактировать» или «Изменить»?

Здравствуйте! Сразу к вопросу (он странный наверное). В интерфейсах на английском есть кнопка Edit. В русскоязычных чаще всего используется «Редактировать». Подскажите, пожалуйста, есть ли какие-то ограничения, если я хочу вместо «Редактировать» использовать более короткое «Изменить»? Или у этих слов в интерфейсе разная коннотация и пользователь больше привык к «Редактировать»?

4 days, 4 hours назад @ bureau.ru
AI’s Uneven Arrival
AI’s Uneven Arrival

o1/o3 points the way to AGI, which is AI that can complete tasks; it may take longer for most companies to adopt them than you might think — just look at digital advertising.

4 days, 11 hours назад @ stratechery.com
AI's Uneven Arrival
AI's Uneven Arrival AI's Uneven Arrival

o1/o3 points the way to AGI, which is AI that can complete tasks; it may take longer for most companies to adopt them than you might think — just look at digital advertising.

4 days, 11 hours назад @ stratechery.com
Много плохих новостей про Яндекс.Директ в товарке и b2b и немного света в конце тоннеля
Много плохих новостей про Яндекс.Директ в товарке и b2b и немного света в конце тоннеля

Кому-то эти новости покажутся очевидными и не новостями вовсе. Ну так они и нам такими кажутся. Но ценны цифры, примеры, демонстрация на реальных бизнесах и кампаниях 2024.

4 days, 12 hours назад @ torshina.me
Radon
Radon Radon 4 days, 20 hours назад @ xkcd.com
Как правильно заимствовать чужой материал?
Как правильно заимствовать чужой материал?

Здравствуйте!

Как правильно заимствовать чужой материал?

Курсы Ильи Синельникова базируются на книгах Джима Кемпа. По крайней мере, он не стесняясь об этом говорит. Справедливо отметить, что Илья не копирует в чистую, а интерпретирует и качественно дополняет.

В некоторых книгах на первых страницах пишут «Никакая часть этой книги не может быть воспроизведена в какой либо форме…» и т. д. Например, в практическом руководстве по схема-терапии Джеффри Янга. Из-за этого мне начинает казаться, что если я напишу о любой идее из этой книги — за мной приедет серый фургон.

На что нужно обратить внимание, если я захочу рассказывать о принципах из других книжек?

Спасибо!

6 days, 4 hours назад @ bureau.ru
Chess Zoo
Chess Zoo Chess Zoo 1 week назад @ xkcd.com
An Interview with Anduril Co-Founder and CEO Brian Schimpf About Paradigm Shifts
An Interview with Anduril Co-Founder and CEO Brian Schimpf About Paradigm Shifts

An interview with Anduril co-founder Brian Schimpf about the Lattice SDK, competing for the Collaborative Combat Aircraft Program, and building AI with Palantir.

1 week, 1 day назад @ stratechery.com
Стройка, отделка, ремонт, Мск, Директ 2024: как мы каждый год строим и отделываем заново
Стройка, отделка, ремонт, Мск, Директ 2024: как мы каждый год строим и отделываем заново

С этим бизнесом мы работаем не первый год, и кампаниям в Яндексе тоже много лет. Но не сказать, что в текущем году это нам упростило задачу. Сейчас в Директе то, что настраивалось даже в конце 2023, может совершенно не работать в 2024. Настроил раз - подстраиваюсь каждый час - уж скорее так.

1 week, 1 day назад @ torshina.me
Meta Changes Moderation Policies, Zuckerberg’s Journey — and Mine, The Audacity of Copying Well
Meta Changes Moderation Policies, Zuckerberg’s Journey — and Mine, The Audacity of Copying Well

Mark Zuckerberg is making big changes to Meta's moderation policies; it's the next step in a journey that has been more nuanced than people think — and it's one I relate to.

1 week, 2 days назад @ stratechery.com
Trimix
Trimix Trimix 1 week, 2 days назад @ xkcd.com
Вдохновение — 2024
Вдохновение — 2024 1 week, 3 days назад @ bureau.ru
Nvidia at CES, Cosmos and Omniverse, Digits
Nvidia at CES, Cosmos and Omniverse, Digits

Nvidia's keynote at CES demonstrated how it is becoming the transformer company.

1 week, 3 days назад @ stratechery.com
Stay Gold, America
Stay Gold, America

We are at an unprecedented point in American history, and I'm concerned we may lose sight of the American Dream.

1 week, 3 days назад @ blog.codinghorror.com
Features of Adulthood
Features of Adulthood Features of Adulthood 1 week, 4 days назад @ xkcd.com
Не финансовый совет
Не финансовый совет

Я правда считаю, что десятки тысяч долларов отложить не очень сложно. При этом инвестировать $10к я бы не стал. Вместо этого занялся бы тем, чтобы заработать ещё $10k, работая на работе работником за деньги, как бы это примитивно не казалось. Опыт показывает, трудиться, пока есть силы и запал, гораздо выгоднее, чем «инвестировать». Сама идея того, что деньги работают сами на себя — это по сути аутсорс личного труда на других.

1 week, 5 days назад @ staskulesh.com
Можно ли применить инфостиль для текстов на ютубе?
Можно ли применить инфостиль для текстов на ютубе?

Я обратил внимание, что речь ведущих на коммерческих ютуб каналах (где говорящая голова пересказывает переводы с реддита) напоминает копирайтинг до инфостиля. Используются клише типа «столбик термометра», «братья наши меньшие», «бытует мнение». Я полагаю, что владельцам канала нужно, чтобы видео было определённой длины, и авторы текста таким образом ее увеличивают, как было раньше с копирайтерами.

1 week, 6 days назад @ bureau.ru
Origami Black Hole
Origami Black Hole Origami Black Hole 2 weeks назад @ xkcd.com
Как изменить стили чужого сайта?
Как изменить стили чужого сайта? 2 weeks, 2 days назад @ bureau.ru
Skew-T Log-P
Skew-T Log-P Skew-T Log-P 2 weeks, 2 days назад @ xkcd.com
Breaking Up with Long Tasks or: how I learned to group loops and wield the yield
Breaking Up with Long Tasks or: how I learned to group loops and wield the yield

Everything, On the Main Thread, All at Once Arrays are in every web developer’s toolbox, and there are a dozen ways to iterate over them. Choose wrong, though, and all of that processing time will happen synchronously in one long, blocking task. The thing is, the most natural ways are the wrong ways. A simple […]

2 weeks, 2 days назад @ calendar.perfplanet.com
Fabulous Font-Face Fallbacks
Fabulous Font-Face Fallbacks

Let’s talk about font fallbacks and how we can craft these to to perfection in order to reduce layout shifts and our users’ headaches. Who among us has not experienced the horrors of clicking the wrong thing because stuff moves? Arghhhh! I’ll start with a brief intro and then focus on lessons learned (the hard […]

2 weeks, 3 days назад @ calendar.perfplanet.com
Где искать референсы хорошей вёрстки?
Где искать референсы хорошей вёрстки? 2 weeks, 3 days назад @ bureau.ru
Designing websites for bad performance
Designing websites for bad performance

There was once a farmer who wanted his chickens to lay more eggs. His friend, a physicist, said – “I can give you a solution for your problem if you have a spherical chicken kept in vacuum” Looking at performance problems in the real world often reminds me of this scenario. Here’s a map from […]

2 weeks, 3 days назад @ calendar.perfplanet.com
A year in review: 2024
A year in review: 2024 A year in review: 2024

2024 was in many ways a very challenging year for me, but it was also one of the most significant.

This year’s annual review post is a bit different.

In previous years, I reflected on the work that I did, the web projects I built, the posts that I wrote and so on. There was lots of that in 2024 too of course (well maybe except the blogging part, that seems to become a pattern).

But the truth is, most of my energy this year went towards building a life for our new family.

My son was born in November, and he’s happily sleeping on my chest as I am typing this. I’ve never felt more grateful or proud about anything in my life, and I still can’t believe he’s with us now. First night in the hospit…

2 weeks, 4 days назад @ mxb.dev
Все плееры похожи
Все плееры похожи

Добрый день!

Все плееры в стримингах плюс минус похожи, хотя и отличия конечно есть. Можете посмотреть их и прокомментировать: какие решения кажутся удачными, а какие нет? Можно ли что-то принципиально улучшить в подобных плеерах? Может у вас есть идеи как улучшить стриминги в целом, не только экран плеера. Некоторые скрины на картинках не не настоящие, а концепты с беханса.

Спасибо.

2 weeks, 4 days назад @ bureau.ru
Using DevTools to Validate Web Performance Improvements
Using DevTools to Validate Web Performance Improvements

I’m passionate about Web Performance—from identifying performance issues, monitoring (synthetic and RUM), metrics, implementing product culture, training development teams and other stakeholders, speaking at meetups and conferences, tools, and snippets. When it comes to tools, my favorite is Chrome DevTools. They are integrated into the browser (desktop, that is), making it quick and easy to […]

2 weeks, 4 days назад @ calendar.perfplanet.com
Time Capsule Instructions
Time Capsule Instructions Time Capsule Instructions 2 weeks, 4 days назад @ xkcd.com
Getting Real (small) With Compression Dictionaries
Getting Real (small) With Compression Dictionaries

Compression dictionary transport is a relatively new feature in HTTP that allows for using custom compression dictionaries to improve the compression of HTTP responses. The results can be pretty dramatic, with responses anywhere from 60-90+% smaller than using the best non-dictionary compression currently available. The feature has been under experimentation in Chrome over the last […]

2 weeks, 5 days назад @ calendar.perfplanet.com
Менеджер давит на эмоции, клиент переманивает дизайнера и как выбрать направление в дизайне
Менеджер давит на эмоции, клиент переманивает дизайнера и как выбрать направление в дизайне 2 weeks, 5 days назад @ bureau.ru
Wait? What? Web Performance Optimization is being studied in universities?
Wait? What? Web Performance Optimization is being studied in universities?

TL;DR: In this article I am sharing the good news that Web Performance Optimization is being studied in universities and I am laying out the plan of teaching Real User Monitoring which I will do for the first time in front of students. My hope is to share ideas in case other fellows would be […]

2 weeks, 6 days назад @ calendar.perfplanet.com
My Favorite Web Performance Graphs of the Year
My Favorite Web Performance Graphs of the Year

As a web performance consultant, I frequently rely on visual data to prioritize optimizations and troubleshoot regressions. Over the past year, two types of graphs have stood out for their effectiveness in simplifying complex data and speeding up decision-making. The Prioritization Graph: Where to Start? When optimizing web performance, the first step is identifying the […]

3 weeks назад @ calendar.perfplanet.com
Lasering Incidents
Lasering Incidents Lasering Incidents 3 weeks назад @ xkcd.com
Некоторые менеджеры целенаправленно используют дедлайны для продавливания своей воли
Некоторые менеджеры целенаправленно используют дедлайны для продавливания своей воли

Здравствуйте и с наступающим!

Прошу простить, что пишу не под своим именем. По письму будет понятно почему.

Некоторые менеджеры пытаются продавить своё решение за счёт дедлайнов.

На переговорах по обсуждению реализации новой функции у меня часто не остаётся времени, чтобы объяснить продакту, почему те или иные вещи делать нельзя.

Предположим, что менеджер предложил нарисовать кнопку вверх-ногами, что очень близко к реальности. Тогда я задаю ему вопрос: «почему?». Иногда я не сдерживаюсь и вступаю в спор, приводя аргументы.

Но проблема в том, что взять паузу на перекур, или задать нужное количество почемучек времени нет. Потому, что время на встречи ограничено, а менеджер говорит: «давай сде…

3 weeks, 1 day назад @ bureau.ru
Don’t Let Your Redesign Ruin Performance: A Case Study
Don’t Let Your Redesign Ruin Performance: A Case Study

It’s a shame that so many redesigns end up slowing down the site or dropping conversions. How to prevent this? In this text, based on one of our successful projects, you will get a framework for web redesign management. We are a small team of web performance consultants with years of experience and a good […]

3 weeks, 1 day назад @ calendar.perfplanet.com
Как сделали сетку, которая активируется на Ctrl+G
Как сделали сетку, которая активируется на Ctrl+G

Здравствуйте!

А как зафигачили себе сетку, которая на контрол + джи активируется? Интересно было бы узнать рецепт :‑)

3 weeks, 2 days назад @ bureau.ru
Correlation or Causation: How web performance proves its value
Correlation or Causation: How web performance proves its value

As web performance experts, we’re all familiar with the oft-cited examples: Amazon, Walmart, and their gains or losses directly tied to page loading speeds. But while these examples are inspiring, they prompt an essential question: what about your company? Your users, buying cycles, and challenges are unique. The real question is not whether web performance […]

3 weeks, 2 days назад @ calendar.perfplanet.com
ВПЕРЁД В ПРОШЛОЕ 3, ИЛИ ИТОГИ ГОДА 2024
ВПЕРЁД В ПРОШЛОЕ 3, ИЛИ ИТОГИ ГОДА 2024

Ещё один год безумно дорогих, но абсолютно бесплодных попыток хоть чем-нибудь заменить в Рунете заблокированные соцсети, видеохостинги, поисковики.

3 weeks, 2 days назад @ torshina.me
Инди-разработка
Show HN Show HN
последний пост 1 час назад
Show HN: Build BioLinks, Portfolios, and Menus with an Easy-to-Use Website
Show HN: Build BioLinks, Portfolios, and Menus with an Easy-to-Use Website

Hi HN,I’ve been working on a platform that helps users create specific types of websites with ease, such as:- Bio Links: Perfect for linking all your social media profiles into one customizable page.

- Portfolios: Showcase your work as a freelancer or creative professional.

- Digital Menus: Ideal for small businesses like restaurants, with WhatsApp integration and shopping cart functionality.What’s Behind the Platform:- Frontend: Built with Vite for fast development and a snappy user experience.

- Backend: Hosted on Railway, offering serverless scalability.

- Database: Uses MongoDB Atlas for flexible, reliable data management.

- License Management and Purchases: Powered by Gumroad, simplify…

1 час назад @ creativity.thelightis.com
Show HN: Bitcoin strategic reserve tracker for each US state
Show HN: Bitcoin strategic reserve tracker for each US state Show HN: Bitcoin strategic reserve tracker for each US state

United States Strategic Bitcoin Reserve TrackerTrack the latest developments in state-level Bitcoin strategic reserve legislation across America.

Our interactive map and comprehensive timeline show how states are approaching Bitcoin adoption, from initial proposals to implemented policies.

Stay informed about your state's progress in embracing digital asset reserves and the future of state treasury management.

2 часа назад @ bitcoinreservemonitor.com
Show HN: Discorch – Offline tool to browse and delete your Discord messages
Show HN: Discorch – Offline tool to browse and delete your Discord messages Show HN: Discorch – Offline tool to browse and delete your Discord messages

DiscorchThis application requires JavaScript to be enabled.

Please enable JavaScript and reload the page.

2 часа назад @ discorch.org
Show HN: An AI Agent reviews Tweets to find user pain points
Show HN: An AI Agent reviews Tweets to find user pain points

Article URL: https://twitter.com/josh_bickett/status/1880156595092615668

Comments URL: https://news.ycombinator.com/item?id=42743885

Points: 1

# Comments: 0

3 часа назад @ twitter.com
Show HN: Find your "holy grail piece", as a service
Show HN: Find your "holy grail piece", as a service Show HN: Find your "holy grail piece", as a service

I am a collector by nature, and hunting down obscure items is a slow process that is only sometimes rewarding. I've often checked eBay at the end of a day to find exactly what I was looking for, long sold. Even the best sites tend to only offer once-a-day "new listing" summaries with noisy results.So as a programmer at heart, I created a solution I would have liked: Antiquebot. Antiquebot is a service focused on connecting you with your "holy grail piece".Antiquebot offers the ability to constantly and repeatedly search a number of auction sites. Custom filters can be used to create a funnel that turns lots of new, generic results into to a handful of specific results without relying on que…

4 часа назад @ antiquebot.net
Show HN: Use the Browser as a Virtual Phone
Show HN: Use the Browser as a Virtual Phone Show HN: Use the Browser as a Virtual Phone

Use your browser as a virtual phoneEparto Virtual Phone is a simple and efficient way to make and receive calls directly from your web browser.

Whether for personal or work-related communication, this extension lets you stay connected without needing to leave the browser or use extra devices.

✔ Incoming Call Notifications When someone from your contact list calls, you’ll see a notification with options to accept or reject the call.

✔ Audio and Video Calls You can accept calls and communicate via audio or video, depending on your preference.

Eparto Virtual Phone is designed to provide a simple and direct way to communicate with your contacts, all within your browser.

4 часа назад @ chromewebstore.google.com
Show HN: The Phoenix LiveView and OTP Crash Course (Free Tutorial)
Show HN: The Phoenix LiveView and OTP Crash Course (Free Tutorial) Show HN: The Phoenix LiveView and OTP Crash Course (Free Tutorial)

Build 3 simple LiveView apps to learn what Phoenix LiveView is, how it works, and makes it so special.

5 часов назад @ liveviewcrashcourse.com
Show HN: Watchfakenews.com
Show HN: Watchfakenews.com Show HN: Watchfakenews.com

Hi everyone, we're democratizing access to deepfakes. Product is live.. try it outIf the above url doesn't work, you can find us on https://www.eggnog.ai/remix Comments URL: https://news.ycombinator.com/item?id=42742920

Points: 8

# Comments: 1

5 часов назад @ eggnog.ai
Show HN: Nimbus – AI Agent to control cloud costs
Show HN: Nimbus – AI Agent to control cloud costs Show HN: Nimbus – AI Agent to control cloud costs

I built Nimbus, an AI agent that helps companies reduce their cloud costs by automatically analyzing their infrastructure and recommending specific optimization actions.

What it does:- Continuously monitors AWS, GCP, and Azure resources - Sends daily actionable recommendations via email - Identifies underutilized dev/test VMs and over-provisioned - Kubernetes clusters - Estimates potential savings for each recommendation - Provides one-click approval for implementing changes - Tracks savings over time with detailed analyticsFuture Plans:- Support for DigitalOcean and Oracle Cloud - ML-powered resource right-sizing recommendations - Automated implementation of approved changes - Cost anomaly…

5 часов назад @ news.ycombinator.com
Show HN: I built a browser extension to automate retyping, tailoring my resume
Show HN: I built a browser extension to automate retyping, tailoring my resume Show HN: I built a browser extension to automate retyping, tailoring my resume

Swift Apply AI - Your Intelligent AI Job Search and Application Assistant Automatically fill job applications, tailor / customize resumes, and track your job search progress with one powerful browser extension.

Land interviews faster and secure your dream job sooner.

Starter Pack ($10.99/mo) • 50 ATS-optimized resumes monthly • Perfect for entry-level job seekers 2.

Professional ($19.99/mo) • 300 optimized resumes monthly • Ideal for active job hunters 3.

Try Swift Apply AI today and transform your job search!

5 часов назад @ microsoftedge.microsoft.com
Show HN: Compile C to Not Gates
Show HN: Compile C to Not Gates Show HN: Compile C to Not Gates

How to install>>> pip install c2fj >>> sudo apt install picolibc-riscv64-unknown-elfHow to useSimply python3 c2fj.py file.c will compile your c file into an elf, into fj files, into fjm, then run it.

The RiscV -> FlipJump part of the compilation parses the compiled elf, and matches each opcode with the appropriate flipjump macro.

rs2 , imm stl .

ret }And the addi x10, x11, 7 opcode will be compiled into riscv.addi mov_rs1_to_x10, mov_x11_to_rs1, 7 .

Note that most of the macros use the global fj variables rs1, rs2, rd (part of the riscv namespace).

6 часов назад @ pypi.org
Show HN: Compile C to Not Gates
Show HN: Compile C to Not Gates Show HN: Compile C to Not Gates

c2fjCompiling C --> RiscV --> Flipjump --> .fjmThis compiler is a proof that any program can be compiled into a bunch of NOT operations.

--build-dir Save the builds in this directoryWhat if my project is more then a single c?

The RiscV -> FlipJump part of the compilation parses the compiled elf, and matches each opcode with the appropriate flipjump macro.

The last phase, running the .fjm file, uses the flipjump package to interpret the .fjm file, and allows to debug it too.

The entire loadable memory of the compiled elf is being loaded into flipjump using this file.

6 часов назад @ github.com
Show HN: LeetGPU – Write and execute CUDA on the web, no GPU required, for free
Show HN: LeetGPU – Write and execute CUDA on the web, no GPU required, for free Show HN: LeetGPU – Write and execute CUDA on the web, no GPU required, for free

We found that there was a significant hardware barrier for anyone trying to learn CUDA programming. Renting and buying NVIDIA GPUs can be expensive, installing drivers can be a pain, submitting jobs can cause you to wait in long queues, etc.That's why we built LeetGPU.com, an online CUDA playground for anyone to write and execute CUDA code without needing a GPU and for free.We emulate GPUs on CPUs using two modes: functional and cycle accurate. Functional mode executes your code fast and provides you with the output of your CUDA program. Cycle accurate mode models the GPU architecture and provides you also with the time your program would have taken on actual hardware. We have used open-sou…

6 часов назад @ leetgpu.com
Show HN: Jolt – AI coding tool for production, 100K+ line codebases
Show HN: Jolt – AI coding tool for production, 100K+ line codebases Show HN: Jolt – AI coding tool for production, 100K+ line codebases

Article URL: https://app.usejolt.ai/

Comments URL: https://news.ycombinator.com/item?id=42742265

Points: 11

# Comments: 2

6 часов назад @ app.usejolt.ai
Show HN: I made a workspace for founders to manage and validate startup ideas
Show HN: I made a workspace for founders to manage and validate startup ideas Show HN: I made a workspace for founders to manage and validate startup ideas

After struggling to manage my growing backlog of startup ideas in various notes apps and spreadsheets, I built TheLeanIncubator - a dedicated workspace for founders to store, track, and validate their startup ideas.

It's built with Node.js/React and implements lean startup methodology into the workflow. Currently supports:Kanban-style idea management

Validation milestone tracking

Customer interview documentation

Automated progress trackingLink: https://theleanincubator.com

The tech stack:Frontend: React with Typescript

Backend: Node.js

Database: PostgreSQL

Auth: Next-Auth

Hosting: VercelThis is very much a v0.1. I'm using it daily to manage my own startup ideas and would love feedback from …

6 часов назад @ theleanincubator.com
Starter Story Starter Story
последний пост 3 months, 3 weeks назад
How I Built A $300K/Month Childcare Management Software
How I Built A $300K/Month Childcare Management Software How I Built A $300K/Month Childcare Management Software

I am the founder of 1Core Solution (“1Core”), based in Cupertino, CA, the heart of Silicon Valley.

Back in early 2000, childcare software was all desktop based with siloed back office functions and limited consumer facing interfaces.

I noticed a gap in the market and saw the potential for cloud-based software that could fundamentally change how software could be developed, delivered and supported in the childcare industry.

We built the first version of our solution by working with a few childcare providers in Silicon Valley.

You can learn more about my background and 1Core Solution:1Core sponsors a Youtube channel called The ChildCare Channel, a safe space designed to Inform, Inspire, and I…

3 months, 3 weeks назад @ starterstory.com
How I Launched A $10K/Month Personal Brand Consultancy
How I Launched A $10K/Month Personal Brand Consultancy How I Launched A $10K/Month Personal Brand Consultancy

This is what I am building today, and is what will eventually be the number 1 personal brand consultancy worldwide and have a team of 500 consultants.

The term personal brand was coined by a man named Tom Peters in 1997 in his article “The Brand Called You” which was published in FastCompany.

Within 3 months, the business appeared as if it was around for years and was already a trusted, vetted, personal brand consultancy.

I initially went on a podcast tour and was doing interviews that felt like every single day talking about MCG, writing more articles on industry subject matter, for example why you would hire a personal brand consultant, why you should build your personal brand, and how ou…

3 months, 3 weeks назад @ starterstory.com
We Started The First Cat Cafe In Southern California ($40K/Month)
We Started The First Cat Cafe In Southern California ($40K/Month) We Started The First Cat Cafe In Southern California ($40K/Month)

My name is Tony Wang, and I’m the general manager of The Cat Cafe in downtown San Diego.

We are the first cat cafe to open in Southern California and we are the fourth oldest continuously operating cat cafe in the United States.

We first learned about cat cafes when we saw an article about Le Cafe de Chats in Paris.

We are The Cat Cafe, as opposed to other cat cafes that have cute names.

But if you work hard enough at it, and you succeed, it will feel great.

4 months назад @ starterstory.com
How I Grew My German Speaking Classes To $5K/Month
How I Grew My German Speaking Classes To $5K/Month How I Grew My German Speaking Classes To $5K/Month

We are a bit different in that we focus on German conversation/speaking classes - we don’t do traditional grammar classes.

We don't tell anyone this but what we really sell isn’t German classes, it is confidence!

To get around this and practice the German I was putting so much effort into learning, I thought I would start an online group for German learners.

But the issue was my German is intermediate - so half the people had German worse than mine and have better.

A poor decision of mine was not grandfathering in everyone who first joined (about the first 80 people) as free customers for life.

4 months, 1 week назад @ starterstory.com
I Built An $8.6K/Month Media Agency For Latinos
I Built An $8.6K/Month Media Agency For Latinos I Built An $8.6K/Month Media Agency For Latinos

We are a Media and Consulting agency focused on the U.S. Latino demographic and are working towards building a marketplace for Latino-owned businesses.

We currently run a weekly newsletter and social media focused on elevating positive stories around the business, culture, and social impact of U.S. Latinos.

The newsletter started and is still currently free to readers.

To continue growing our audience and agency clients, I will double down on consistently posting across social media platforms.

Over the next 12 months, as I’m increasing agency and newsletter revenue, I’ll be focused on slowly building up the first iteration of the Latino-owned marketplace.

4 months, 2 weeks назад @ starterstory.com
How I Scaled My Boring Business To $2.4M Per Year
How I Scaled My Boring Business To $2.4M Per Year How I Scaled My Boring Business To $2.4M Per Year

Because owning a self-storage facility didn’t seem like a real estate investment.

It sounded more like I would be running a small business.

The self-storage industry is interesting, because it benefits greatly from a lot of modern business practices.

We knew our focus coming out of the gates was to build a self-storage business with a heavy focus on technology and process optimization.

Our first Iron Storage facilityThe first storage facility we bought and revamped was about an hour from where I lived in Houston, TX.

4 months, 2 weeks назад @ starterstory.com
How I Grew My Language Learning App To $7K/Month
How I Grew My Language Learning App To $7K/Month How I Grew My Language Learning App To $7K/Month

I am Stefano Lodola, founder of Think in Italian, a language learning platform designed to help individuals master Italian through an immersive approach.

My research confirmed that there was a gap in the market for a more comprehensive and engaging approach to learning Italian.

However, many language app users have expectations that work against them (“where are the quizzes?

At its peak, my site had the largest amount of organic traffic among those focusing on teaching the Italian language with 130k visits/m.

Instead of those spammy “best xyz” listicles that any content writer can make up, I published hundreds of grammar notes to attract people who are serious about learning Italian.

4 months, 3 weeks назад @ starterstory.com
How Our Baby Product Went From Zero to $100K/Month In Just ONE Year
How Our Baby Product Went From Zero to $100K/Month In Just ONE Year How Our Baby Product Went From Zero to $100K/Month In Just ONE Year

Our current hero product is the Vonu Lounger, a multi-use lounger that helps with tummy time, reflux relief, burping, and gas relief, and encourages face-to-face time with your little one.

As of right now, we’re less than a year in, and over 10,000 babies and parents have found relief with the Vonu Lounger.

We ended up with the first Vonu Lounger which we called a “Burplee” at the time.

We use our social proof and UGC to build a community around the brand and the Vonu Lounger.

Davante, our co-founder, taught himself how to buy media a few months into building Vonu and has done an incredible job creating a paid media team around him.

4 months, 3 weeks назад @ starterstory.com
How We Built A 7-Figure Email Management App
How We Built A 7-Figure Email Management App How We Built A 7-Figure Email Management App

What we had in mind was a simple, clutter-free email hub, where people could manage all their inboxes and reduce some of that email anxiety we all experience.

To this day, I believe it shows in the way Mailbird is built, its features, and the overall user experience.

Our customer base consists of two main groups:The heavy email users.

Part of the Mailbird team, in BaliWe launched Mailbird with minimal resources.

Mailbird - Last but not least, of course, we use Mailbird for our email management needs.

4 months, 3 weeks назад @ starterstory.com
My Family-Run Woodworking Business Makes $30K/Month
My Family-Run Woodworking Business Makes $30K/Month My Family-Run Woodworking Business Makes $30K/Month

My son, Asher, and my wife, Paige, and I started our woodworking business four years ago: Frailey Woodworks.

Each of these skill sets are now focused on our high-end furniture making business where we specialize in full-scope design and build.

Soon, we ventured into other custom mid-century furniture, and our business took off.

Building our first hand-powered sit/stand desk took several iterations before we had a working prototype.

These customers took a chance on our company and we are very grateful for their trust.

4 months, 3 weeks назад @ starterstory.com
How We Built A $1M/Month AI Writing SaaS
How We Built A $1M/Month AI Writing SaaS How We Built A $1M/Month AI Writing SaaS

Aithor helps with research, essay planning, sourcing trustworthy references, and adhering to specific types of writing.

We are broadening our focus to include content creators such as marketers and managers, while still supporting our existing student base.

It wasn’t until about four months after the product launch that we realized we were in the right place at the right time with the right team.

We quickly went to market, attracted new clients, and received valuable feedback, which led us to refine the MVP.

(1) Do it simply and quickly to sell it right away – bring the product to market faster.

4 months, 3 weeks назад @ starterstory.com
I Bootstrapped My Marketing SaaS For Shopify Stores to $1M ARR
I Bootstrapped My Marketing SaaS For Shopify Stores to $1M ARR I Bootstrapped My Marketing SaaS For Shopify Stores to $1M ARR

Hey, my name is Kyle Bigley and I am the Founder of TxtCart, AKA the AI-Powered SMS Marketing company for Shopify stores.

We’re a unique SMS Marketing company pioneering conversational commerce with AI agents generating sales and resolving customers questions via text messages.

Now, we’re over $1M ARR while still bootstrapped and are setting our sights on $3M ARR by 2026 (whilst still bootstrapped).

So I started TxtCart right before graduating, and took a Project Management job out of college.

Holding out on external investment from either Angels, VCs or crowdfunding makes building a SaaS in an ultra competitive environment like SMS Marketing incredibly difficult.

4 months, 4 weeks назад @ starterstory.com
My Niche Design & Manufacturing Company Went From 0 to $15K In 6 Months
My Niche Design & Manufacturing Company Went From 0 to $15K In 6 Months My Niche Design & Manufacturing Company Went From 0 to $15K In 6 Months

My company specializes in designing and manufacturing modern, stylish flatpack furniture and other designery items.

This allows me to focus on what I'm good at – the creative process – and leave the manufacturing to experts.

The combination of life on the road and designing things inherently designed to travel or get deconstructed and reconstructed resonated with me.

I also use Notion for ideation and notes, Shapr3d for CAD design and drawings, Illustrator for logos, Pacdora for packaging design.

Natural curiosity is an essential tool for entrepreneurs: asking questions, seeking to understand how things work, and being eager to learn and inquire.

4 months, 4 weeks назад @ starterstory.com
My AI Side Project Makes $4K/Month Working Just 5 Hours Per Month
My AI Side Project Makes $4K/Month Working Just 5 Hours Per Month My AI Side Project Makes $4K/Month Working Just 5 Hours Per Month

I was based out of Singapore and was working with an edtech founder and looking for ideas in the AI + edtech space.

Explored several ideas like vision AI based analytics for live tutoring classes, adaptive learning and AI generated quizzes.

A year later in 2022, I put together all my learnings in AI quiz generation into an Udemy course.

So I built the first version that just takes text input on a left textbox, calls an API behind the scenes and shows the output text (quizzes) on the right textbox.

There are so many things like influencer marketing, email marketing, paid ads, SEO, newsletter marketing etc.

5 months назад @ starterstory.com
A Complete Breakdown To How We Built A $20K MRR AI App
A Complete Breakdown To How We Built A $20K MRR AI App A Complete Breakdown To How We Built A $20K MRR AI App

Software development, nutrition, business strategy, economics, AI - I've obsessed over them all.

Free product feedback can be deceiving - they might not value it the same if they were paying.

Some crucial parts weren't ready (like, you know, showing people their AI generated headshots), but who needs a complete product, right?

As you can see from the screenshot below, we were ranking for an important keyword, ‘Ai headshot generator’, in April.

Install as many product feedback loops to drive insights about your target audience.

5 months назад @ starterstory.com
Indiehackers
последний пост 12 часов назад
Growing an AI product to $70k+ MRR within a year vi
Growing an AI product to $70k+ MRR within a year vi Growing an AI product to $70k+ MRR within a year vi

Whatever it takesMy entrepreneurial journey started in 2015 after watching an Alex Becker video on how to make money with SEO.

I tried and tested every single business model under the sun until I had some success with freelancing and, now, SaaS.

Along the way, I documented every single thing on YouTube.

After selling Vettted, I shifted my attention to scaling my current AI SaaS, Journalist AI.

When an insane technology like AI comes into play, it’s dumb not to build something using it.

12 часов назад @ indiehackers.com
300 sites I used to promote my startups
300 sites I used to promote my startups 300 sites I used to promote my startups

It took me months to collect these 300 sites to promote my startup - Saner.AI, I'll stop gatekeeping it and share it with you all today 💪Finding your first users is tough.

But it can be a little easier if you can leverage the audience of other sitesThat’s why I used these 300 sites - directories, community sites, deal platforms, and affiliate pages.

Each site includes:Monthly traffic stats.

Other notesThese sites helped me:Promote my business to new audiences.

I’m sharing this list because I know how tough the founder’s journey can be and hope that this will make your life a bit easier :)Here's the list, all the best guys

22 часа назад @ indiehackers.com
Things every indie hacker should know about monetary economics
Things every indie hacker should know about monetary economics Things every indie hacker should know about monetary economics

Credit: Spending money you don't have, that you're borrowing from someone else, while promising to them pay back later.

When consumers can easily borrow money, they can immediately buy houses, buy vehicles, and start businesses.

And the cheaper it is for everyone to borrow money, the more money they borrow.

Generally, interest rates below 3% are considered low, while rates above 5% are considered high.

On the flip side, when interest rates are high (like they are now), it's a good time to focus on efficiency and stability.

1 day, 8 hours назад @ indiehackers.com
Looking for a business/marketing partner
Looking for a business/marketing partner Looking for a business/marketing partner

Hey all,I'm Stanley, and I'm currently building an agency that specialises in creating custom internal tools, dashboards, and third-party integrations using FilamentPHP.

You can explore some of products I have built here - https://filamentapps.devMy current focus initially for products is workplace tools and automations but open to other industries or areas.

I'm currently looking to collaborate with a product marketer/growth person while I handle the technical side of building / fine-turning the products and working on client’s projects.

The ideal candidate would have a strong background in B2B marketing strategies, with a proven track record in driving lead generation and customer acquisit…

1 day, 12 hours назад @ indiehackers.com
Hitting $5M ARR in a saturated market by doubling down on branding
Hitting $5M ARR in a saturated market by doubling down on branding Hitting $5M ARR in a saturated market by doubling down on branding

Growth beyond brandingInvest in influencer marketingSo we had a brand that stood out, but we needed a couple more things to turn on growth.

It helped that we were doing something in a brand new market, so there were a lot of folks looking for content.

This strategy is a more expensive and less effective strategy if you play in a more established market or your customers live in more expensive/traditional marketing channels.

Get customer-led growthInfluencer marketing helped jump-start our growth, and we’re now able to get a lot more out of customer-led growth to keep our CAC down.

Our growth engine will keep evolving, and we’ve recently invested even more in customer-led community and mid-f…

1 day, 13 hours назад @ indiehackers.com
My Experience using AI to Code
My Experience using AI to Code My Experience using AI to Code

Using AI to Build SoftwareIf you've ever used no-code tools like Framer or Bubble you know how easy and difficult those tools can be.

Comparing AI ToolsUnfortunately, AI is not yet a Do-It-All Tool.

Those limitations are shrinking everyday and tools like Cursor & Replit allow you to edit AI generated code.

Replit has something no other AI tool offers, a marketplace.

If you have started a project with an AI tool you can contract a freelancer on sites like Fiverr or Upwork.

2 days, 5 hours назад @ indiehackers.com
Reactable AI
Reactable AI Reactable AI

Say hello 👋 to Reactable AI!

My AI startup that helps you make better LinkedIn and Instagram posts up to 10x faster.

It's NOT purely generative AI though.

✅ It learns how posts perform and suggests new approaches next time✅ It posts to Instagram and LinkedIn with a single click (10 faster!)

So if you get a subscription before the cheaper seats run out, you'll end up paying a lot less.

2 days, 8 hours назад @ indiehackers.com
The Emotional Rollercoaster of Building a SaaS App—and Why It’s Worth It
The Emotional Rollercoaster of Building a SaaS App—and Why It’s Worth It The Emotional Rollercoaster of Building a SaaS App—and Why It’s Worth It

Building a SaaS app is like riding a rollercoaster.

37% of SaaS founders say their biggest mistake was not listening to their early users (source: SaaS Insider).

Why It’s All Worth ItDespite the challenges, building a SaaS app has been one of the most fulfilling experiences of my life.

Final ThoughtsIf you’re thinking about building a SaaS app, know this: it won’t be easy, but it will be worth it.

Have you ever built a SaaS app or thought about starting one?

2 days, 18 hours назад @ indiehackers.com
TikTok ban drops this week. Everything you need to know today.
TikTok ban drops this week. Everything you need to know today. TikTok ban drops this week. Everything you need to know today.

PAFACA doesn’t tell anyone they have to delete TikTok, and it doesn’t order TikTok to shut down in the US.

You can grab a copy of your TikTok data, which includes things like your username, watch video history, your comments, and your privacy settings.

myfaveTT is a Chrome extension that exports all your liked and favorited TikTok videos as .mp4 files.

It promises to back up all your TikTok videos by uploading them to Triller.

Potential futureWith the US TikTok ban looming, a wild mix of buyers are stepping into the spotlight.

3 days, 4 hours назад @ indiehackers.com
The TikTok ban drops this week. Everything you need to know today.
The TikTok ban drops this week. Everything you need to know today. The TikTok ban drops this week. Everything you need to know today.

PAFACA doesn’t tell anyone they have to delete TikTok, and it doesn’t order TikTok to shut down in the US.

You can grab a copy of your TikTok data, which includes things like your username, watch video history, your comments, and your privacy settings.

myfaveTT is a Chrome extension that exports all your liked and favorited TikTok videos as .mp4 files.

It promises to back up all your TikTok videos by uploading them to Triller.

Potential futureWith the US TikTok ban looming, a wild mix of buyers are stepping into the spotlight.

3 days, 4 hours назад @ indiehackers.com
The Ability to Finish a Project – How We Built and Launched a Simple Ping Service
The Ability to Finish a Project – How We Built and Launched a Simple Ping Service The Ability to Finish a Project – How We Built and Launched a Simple Ping Service

This led to a frustrating cycle: projects dragged on longer than expected, and more often than not, we abandoned them.

We relied on similar ping services to keep those apps alive, but most of them were packed with features we didn’t need.

That got us thinking: why not build something useful but ridiculously simple, with an intuitive UI and only the essential features?

It’s designed to be straightforward: simple signups, simple pings, and a simple interface.

Whether you're keeping your free-tier apps awake or just experimenting with cloud-hosted services, PingPapi provides a no-nonsense solution that works.

3 days, 6 hours назад @ indiehackers.com
Looking for a Co-Founder: Software Developer 🚀
Looking for a Co-Founder: Software Developer 🚀 Looking for a Co-Founder: Software Developer 🚀

Hi Indie Hackers,We are seeking a second software developer to join our entrepreneurial journey!

Here's an overview of who we are and what we're building:Our TeamTim Uhlott (32, Software Architect): Developing his own projects since 2015.

Christian Wunder (34, Developer Team Lead): On his entrepreneurial journey since 2019.

Why We're Looking for YouWith Christian leaving, we’re looking for a talented and entrepreneurial software developer to fill his role and join us as a core team member.

CRM Software for Real Estate Agents: A solution tailored for real estate agents in German-speaking countries.

3 days, 8 hours назад @ indiehackers.com
How We Built an Instagram Tool in 15 Days—and Turned Down $85,000
How We Built an Instagram Tool in 15 Days—and Turned Down $85,000 How We Built an Instagram Tool in 15 Days—and Turned Down $85,000

I’m one of the creators behind Gramlab.io—a tool designed to help creators and brands grow their Instagram accounts using the Close Friends feature.

Maxime, a friend, and Instagram growth expert sent me a quick message: "What if we built a tool that automates Instagram’s Close Friends feature for creators?

Stories shared with Close Friends get priority placement in the feed, showing up with a green ring that screams VIP access.

In December 2020, she used Close Friends to engage her 120 million followers, strengthening her bond with fans and driving massive engagement.

But here’s the catch: manually adding thousands—or millions—of followers to Close Friends is a nightmare.

4 days, 6 hours назад @ indiehackers.com
How I helped an Immigration Services Agency to streamline their business processes.
How I helped an Immigration Services Agency to streamline their business processes. How I helped an Immigration Services Agency to streamline their business processes.

Building a CRM for an immigration services agency wasn’t something I had planned, but when a friend running an agency mentioned how disorganized their client management process was, I knew there had to be a better way.

They were juggling spreadsheets, emails, and paper files, and it was clear they needed a proper system to streamline everything.

Understanding the ProblemThe first step was figuring out what the agency really needed.

Feedback is Gold - Regular feedback from the agency helped me tweak the CRM and make it more useful.

Stats to Back It Up30% of small businesses struggle with disorganized client management systems.

4 days, 20 hours назад @ indiehackers.com
Report: AI to kill 92 million and create 170 million jobs
Report: AI to kill 92 million and create 170 million jobs Report: AI to kill 92 million and create 170 million jobs

Report: AI to kill 92 million and create 170 million jobs.

They recently released a report called "Future of Jobs 2025", where they estimated that 92 million jobs will be destroyed by AI.

The good news is that 170 million jobs will be created.

That's a net employment increase of 78 million jobs.

Reports like these can be useful if you have an AI software and want to specialize in a particular industry.

5 days, 2 hours назад @ indiehackers.com
Reddit: /r/SideProject Reddit: /r/SideProject
последний пост 1 час назад
Picasso in Your Pocket: TextBehind Pro + Your Ideas! (Promo Codes!)
Picasso in Your Pocket: TextBehind Pro + Your Ideas! (Promo Codes!) Picasso in Your Pocket: TextBehind Pro + Your Ideas! (Promo Codes!)

Hey creative geniuses! Ever looked at a photo and thought, "This needs MORE"? More pizzazz? More... YOU? Then you NEED to check out TextBehind Pro – the app that turns your pics from "meh" to "MASTERPIECE!" TextBehind Pro isn't just another photo editor. We're talking about unleashing your inner Picasso, right from your phone. Here's the lowdown: Text Behind Magic: Seriously, this feature is slick. Add text that weaves behind objects in your photos for that pro-designer look. It's like Photoshop, but without the headache! Editing Playground: Crop, filter, enhance, tweak – you name it. Our tools are powerful but super easy to use. Fort Knox Privacy: Your photos are YOUR business. No servers,…

1 час назад @ reddit.com
Founders: I built an org that crowdsources creative solutions for your startup
Founders: I built an org that crowdsources creative solutions for your startup

Its called the "Ideathon" Its formatted as a five day virtual competition where students pitch solutions for your startup. Its gives startups implementable decks, access to talent pools, product exposure and validation ALL while helping hundreds of students. WEBSITE submitted by /u/leonKhosh [link] [comments]

1 час назад @ reddit.com
Seda - The AI Powered Cursor for Surfing the Web - Beta Testing
Seda - The AI Powered Cursor for Surfing the Web - Beta Testing

Hey Everyone! My name is Talha Khan, I was an AI researcher at NASA, I'm a Venture Scout at IBM Ventures and a Product Manager for IBM Cloud. I'm building a startup called Seda. We're building an AI Powered Cursor for surfing the web. My Background: https://www.linkedin.com/in/talha--khan/ Jeff Rulifson, one of the original founders of the cursor back in 1968 and one of the presenters in “The Mother of All Demo’s” Is an advisor to the company. We’re currently looking for Private Beta users to get feedback on what it could look like having an AI in every click, hover, scroll, keyboard input you have while surfing the internet. If you’d be interested in being an early beta tester on MacOS ple…

1 час назад @ reddit.com
Hit $500 in gross sales today after four months of building
Hit $500 in gross sales today after four months of building Hit $500 in gross sales today after four months of building

submitted by /u/Worldly_Expression43 [link] [comments]

2 часа назад @ reddit.com
Built FlowGuard - a browser extension where you earn browsing time by completing tasks. Because regular site blockers never worked for me
Built FlowGuard - a browser extension where you earn browsing time by completing tasks. Because regular site blockers never worked for me Built FlowGuard - a browser extension where you earn browsing time by completing tasks. Because regular site blockers never worked for me

submitted by /u/arionem [link] [comments]

2 часа назад @ reddit.com
AI prompt Enginering
AI prompt Enginering

Hey, I’ve put together a simple template that lets anyone build their own AI voice assistant as saas with animated avatars, all using FlutterFlow (a low-code platform) and OpenAI. For example, when a user asks a question, the assistant will respond with a voice answer tailored to a specific niche (e.g., "Answer this that could be spoken in around 15 seconds, remember u presenting a bot called 'RapidAsk' who can answer smart voice replies on ...etc "). The cool part? You can set multiple preferences/variables for each assistant prompt, so you can customize how they answer based on your needs/user preferences..etc This could lead to thousands of unique apps with personalized AI bots ex: fitn…

2 часа назад @ reddit.com
My friend is building an All-in-One career helper that will help you land your next job and take the monotony of job applications away from you!
My friend is building an All-in-One career helper that will help you land your next job and take the monotony of job applications away from you! My friend is building an All-in-One career helper that will help you land your next job and take the monotony of job applications away from you!

submitted by /u/anujpatwari [link] [comments]

2 часа назад @ reddit.com
Browser game I made with vanilla html, css, js, php. Already 27 users ;D.
Browser game I made with vanilla html, css, js, php. Already 27 users ;D.

Https://games195.com submitted by /u/AdOther7046 [link] [comments]

2 часа назад @ reddit.com
Built a 'Kudos' Slack App that allows you to give colleagues a shoutout.
Built a 'Kudos' Slack App that allows you to give colleagues a shoutout.

Hey guys — A little copy-pasta from the r/Slack subreddit, but figured it might be helpful here as well. Around July last year my organization & some other projects I'm a part of were using a Slack app called 'Kudos' that was discontinued and became kind of a security hole, so I decided to emulate the core features of that project and build my own version. For anyone who hasn't used such an app, the goal is to have a simple way to give a shout out to colleagues that doesn't require you to publicly post something in like the #general channel (which can often feel a little cringey 😄*)* Once per quarter/half or even yearly you can then use the /tally command to tally up the top 10 Kudos giver…

3 часа назад @ reddit.com
FeedbackRequest Boost Your Low-Code Development with LowRepo — Seeking Community Insights
FeedbackRequest Boost Your Low-Code Development with LowRepo — Seeking Community Insights

Hello r/SideProject Community! I'm building LowRepo, a platform designed to simplify how we find and share reusable low-code components. My goal is to help developers: Save time by quickly locating pre-built components Speed up projects without reinventing the wheel Collaborate effectively within a community of low-code enthusiasts What's Included in LowRepo? Industry-Specific Solutions: Tailored for healthcare, finance, e-commerce, etc. Community Ratings & Reviews: Find the best components faster Filter by Tool: Microsoft Power Apps, Mendix, OutSystems, and more Why I'm Here I’d love your feedback on what features or improvements you’d like to see. If you have a moment, check out the landi…

3 часа назад @ reddit.com
I built the cheapest (<$1/vid) UGC-style ad generator
I built the cheapest (<$1/vid) UGC-style ad generator

Hey everyone, Wanted to spread the word about ugcgenerator.com . It's by far the cheapest UGC ad generator on the market while being on par, or even higher quality, than competitors. Soft launched a couple weeks ago and we've been seeing a lot of interest (1500+ videos made so far). Would love for you to check it out! submitted by /u/SeoulNation [link] [comments]

5 часов назад @ reddit.com
I built the ultimate FastAPI starter
I built the ultimate FastAPI starter

I posted around two weeks ago about a FastAPI boilerplate (https://www.reddit.com/r/FastAPI/comments/1hrm0dq/my_ultimate_fastapi_template/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button) and was overwhelmed with all the messages and comments about how this was needed. So I went to work and built the starter including: Automatic auth endpoints built on top of supabase 🔒 Accept payments with stripe (webhook ready) 🤑 Dockerfile ready deployments with Render (Adding all 3 major cloud providers next!) 🚀 Fully Async DB integration with SQLAlchemy and Alembic for migrations, on top of the supabase postgres offering. Folder-by-feature structure so you can sc…

5 часов назад @ reddit.com
[iOS] Built YouTube Comment Analyser app and I can now pay Apple developer fee from this week's sales
[iOS] Built YouTube Comment Analyser app and I can now pay Apple developer fee from this week's sales

I have been experimenting with iOS Apps and with my latest YouTube Comment Analyser app, I have become profitable with in-app subscriptions. The app is already helping YouTube content creators with analysing sentiments of comments posted to their videos and generating ideas for their next viral video with help of AI. The feedback I received through DMs has been very helpful. I would love more feedback from the community and any suggestions on how to make it even bigger? Link: https://apps.apple.com/us/app/yt-comments-insights/id6740210325 submitted by /u/newtotexas22 [link] [comments]

5 часов назад @ reddit.com
Just spent $425 on watchfakenews.com for my fake news generator
Just spent $425 on watchfakenews.com for my fake news generator

Yeah, I know, kind of a crazy amount to drop on a domain for a side project (and I haven't set up url forwarding yet 😂). TLDR is that you can take scenes from podcasts, movies, tv shows, etc. and re-lip sync them (ie make something funny for friends or posts for social media). Try it out here: https://eggnog.ai/remix It's a gray area morally, but the idea is that by making it easy to generate stuff like this, people will realize how simple it is to fabricate things and hopefully get better at spotting misinformation / be more conscious of getting their news from trusted sources instead of social media. If you’re curious, DM me whatever you make, and I’ll add it to the front page :) submitte…

5 часов назад @ reddit.com
made a lifemaxxing app in 30 days, any suggestions on the apple UI design?
made a lifemaxxing app in 30 days, any suggestions on the apple UI design? made a lifemaxxing app in 30 days, any suggestions on the apple UI design?

submitted by /u/Able_Comparison5923 [link] [comments]

5 часов назад @ reddit.com
Product Hunt Product Hunt
последний пост 1 day, 1 hour назад
Left
Left

Visualizing time in interactive dots - one dot, one moment Discussion | Link

1 day, 1 hour назад @ producthunt.com
Ezlift Pro
Ezlift Pro

Track Your Gym Workouts Discussion | Link

1 day, 13 hours назад @ producthunt.com
Captioner RedNote Express
Captioner RedNote Express

A free tool to add Chinese subtitles to videos for Red Note Discussion | Link

1 day, 14 hours назад @ producthunt.com
Content Caddy
Content Caddy

Instant social media posts from your website copy Discussion | Link

1 day, 15 hours назад @ producthunt.com
Cursor Convo Export
Cursor Convo Export

Effortlessly save & revive your Cursor AI chats Discussion | Link

1 day, 17 hours назад @ producthunt.com
Doctor Droid
Doctor Droid

Troubleshoot & run k8s commands from Slack using AI Discussion | Link

1 day, 18 hours назад @ producthunt.com
BurnBot
BurnBot

Robots that prevent wildfires Discussion | Link

1 day, 20 hours назад @ producthunt.com
Browser Use
Browser Use

Make websites accessible for agents Discussion | Link

2 days назад @ producthunt.com
Wander
Wander

Event distribution hub Discussion | Link

2 days, 8 hours назад @ producthunt.com
ChatGPT Task
ChatGPT Task

Scheduled tasks in ChatGPT Discussion | Link

2 days, 11 hours назад @ producthunt.com
WindowKeys
WindowKeys

Make 3rd party keyboards work with window-tiling shortcuts Discussion | Link

2 days, 17 hours назад @ producthunt.com
StractiAI
StractiAI

Create AI Bots For Games Discussion | Link

2 days, 22 hours назад @ producthunt.com
Explode
Explode

Send exploding photos in iMessage Discussion | Link

3 days, 2 hours назад @ producthunt.com
Shredder
Shredder

Tinder for skiers and snowboarders Discussion | Link

3 days, 3 hours назад @ producthunt.com
Spotiguess
Spotiguess

Create any ‘Guess The Song’ game using your Spotify account Discussion | Link

3 days, 5 hours назад @ producthunt.com
Путешествия
Vandrouki Vandrouki
последний пост 12 часов назад
Прямые рейсы из Казани на Пхукет
Прямые рейсы из Казани на Пхукет Прямые рейсы из Казани на Пхукет

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

12 часов назад @ vandrouki.ru
Прямые рейсы из Уфы в Узбекистан
Прямые рейсы из Уфы в Узбекистан Прямые рейсы из Уфы в Узбекистан

Уфимцы, для вас нашлось еще одно направление по адекватной цене: прямые рейсы в Самарканд всего за 4000 рублей.

Билеты берем через сервис aviasales.ru или на оф.

сайте Азимута.

20 января:24 января:27 января:31 января:

13 часов назад @ vandrouki.ru
Прямые рейсы из Самары, Уфы и Екатеринбурга в Египет
Прямые рейсы из Самары, Уфы и Екатеринбурга в Египет Прямые рейсы из Самары, Уфы и Екатеринбурга в Египет

Летим к морю, пирамидам и верблюдам: прямые рейсы из Самары, Уфы и Екатеринбурга в Египет от 5700 рублейВылеты в пределах с 21 по 31 января.

Билеты доступны на aviasales.ru.

Уфа — Шарм:Самара — Шарм:Екатеринбург — Хургада:

14 часов назад @ vandrouki.ru
Неделя в ОАЭ с вылетом из Екатеринбурга
Неделя в ОАЭ с вылетом из Екатеринбурга Неделя в ОАЭ с вылетом из Екатеринбурга

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

15 часов назад @ vandrouki.ru
Горящие билеты из Петербурга на Пхукет за 10800 рублей в один конец, из Москвы за 25400 рублей туда-обратно
Горящие билеты из Петербурга на Пхукет за 10800 рублей в один конец, из Москвы за 25400 рублей туда-обратно Горящие билеты из Петербурга на Пхукет за 10800 рублей в один конец, из Москвы за 25400 рублей туда-обратно

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

16 часов назад @ vandrouki.ru
Air Serbia: полеты из Москвы и Петербурга в Сербию, Боснию и Португалию
Air Serbia: полеты из Москвы и Петербурга в Сербию, Боснию и Португалию Air Serbia: полеты из Москвы и Петербурга в Сербию, Боснию и Португалию

Братская Air Serbia немного скинула цены: улететь из Москвы и Петербурга в Ниш (Сербия), Баня-Луку (Босния) и Порту можно от 16400 рублей в одну сторону и от 32400 рублей туда-обратно.

По пути стыковки в Белграде — здесь же можно и остаться, лететь дальше никто не заставляет.

Главное — у вас должен быть куплен билет из Москвы или Питера в один конец.

Подобрать даты и купить билеты можно на сайте авиакомпании или через сервис aviasales.ru (только тут примут российскую карту).

Петербург — Ниш или Белград:На сайте авиакомпании:Петербург — Ниш — Петербург:На сайте авиакомпании:Петербург — Баня-Лука — Петербург:На сайте авиакомпании:Петербург — Порту — Петербург:На сайте авиакомпании:Москва — Ба…

16 часов назад @ vandrouki.ru
Прямые рейсы из Самары на Пхукет
Прямые рейсы из Самары на Пхукет Прямые рейсы из Самары на Пхукет

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

18 часов назад @ vandrouki.ru
6 ночей в ОАЭ с вылетом из Уфы
6 ночей в ОАЭ с вылетом из Уфы 6 ночей в ОАЭ с вылетом из Уфы

ОАЭ уфимцам:Январские туры в Эмираты на 6 ночей с вылетом из Уфы за 35700 рублей с человека!

Даже несколько дат вылета, рейсы удобные, вам понравится.

В цену тура включено:прямой перелет из Уфы в Дубай туда-обратно (с багажом);проживание в отеле — 6 ночей;трансфер;завтраки;медицинская страховка.

21, 22, 23 январяЦена может измениться в любой момент — бронируйте при первой возможности, пока это не сделал кто-то другой!

Посмотреть все варианты туров и забронироватьСамый дешевый, цена по ссылке за двоих:

1 day, 8 hours назад @ vandrouki.ru
Из Москвы, Петербурга, Красноярска, Иркутска и Владивостока в Малайзию
Из Москвы, Петербурга, Красноярска, Иркутска и Владивостока в Малайзию Из Москвы, Петербурга, Красноярска, Иркутска и Владивостока в Малайзию

Туроператор БиблиоГлобус снова скинул цены: улететь на Пхукет из Москвы, Питера, Красноярска, Иркутска и Владивостока можно от 10900 рублей.

Вылеты в ближайшие дни, везет Аэрофлот.

Билеты берем на сайте БиблиоГлобуса или через сервис aviasales.ru.

Мы все уже поняли, что стоимость жилья на Пхукете сейчас зашкаливает, поэтому предлагаем вечером 18 января отправиться из Таиланда в столицу Малайзии за 4900 рублей.

Пхукет — Куала-Лумпур:Москва — Пхукет:Иркутск — Пхукет:Красноярск — Пхукет:Владивосток — Пхукет:Питер — Пхукет:

1 day, 8 hours назад @ vandrouki.ru
5* Hainan Airlines: из Москвы на остров Хайнань или в Гонконг
5* Hainan Airlines: из Москвы на остров Хайнань или в Гонконг 5* Hainan Airlines: из Москвы на остров Хайнань или в Гонконг

Если искать билеты в Гонконг — можно увидеть варианты у той же авиакомпании за 20900 рублей.

Причем по пути стыковка в Хайкоу (Хайнань) — здесь же можно и остаться, лететь дальше никто не заставляет.

А еще доступен стоповер на Хайнане без доплат — это значит, что вы можете прилететь из Москвы в Хайкоу, отдохнуть несколько дней (но не больше 7) и отправиться в Гонконг.

Если вам нужно только на Хайнань и вы собираетесь лететь с багажом — на стойке регистрации попросите зарегистрировать его только до Хайкоу.

Москва — Хайкоу без всяких хитростей:Москва — Хайкоу/Гонконг в апреле:Москва — Хайкоу (остановка на 6 дней) — Гонконг в апреле-мае:Москва — Хайкоу/Гонконг в мае:Москва — Хайкоу (остановка …

1 day, 11 hours назад @ vandrouki.ru
Прямые рейсы из Новосибирска на Пхукет
Прямые рейсы из Новосибирска на Пхукет Прямые рейсы из Новосибирска на Пхукет

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

1 day, 12 hours назад @ vandrouki.ru
Туры в Египет на все включено из Самары и Тюмени
Туры в Египет на все включено из Самары и Тюмени Туры в Египет на все включено из Самары и Тюмени

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

1 day, 13 hours назад @ vandrouki.ru
Прямые рейсы из Челябинск на Пхукет
Прямые рейсы из Челябинск на Пхукет Прямые рейсы из Челябинск на Пхукет

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

1 day, 14 hours назад @ vandrouki.ru
Цейлон: 8 или 10 ночей из Москвы
Цейлон: 8 или 10 ночей из Москвы Цейлон: 8 или 10 ночей из Москвы

Цейлон:На 8 или на 10 ночей туром из Москвы с 17 или 18 января за 48600 или 49600 рублей с человека!

Полетим чартером, багаж будет.

В цену тура включено:прямой перелет из Москвы на Шри-Ланку туда-обратно (с багажом);проживание в отеле — 8 или 10 ночей;трансфер;медицинская страховка.

17 и 18 январяЦена может измениться в любой момент — бронируйте при первой возможности, пока это не сделал кто-то другой!

Посмотреть все варианты туров на 17 января и забронироватьСамый дешевый, цена по ссылке за двоих:Посмотреть все варианты туров на 18 января и забронироватьСамый дешевый, цена по ссылке за двоих:

1 day, 15 hours назад @ vandrouki.ru
Прямые рейсы из Москвы в Омск на выходные
Прямые рейсы из Москвы в Омск на выходные Прямые рейсы из Москвы в Омск на выходные

Москвичи, вот вам планы на эти выходные: прямые рейсы в Омск за 6300 рублей туда-обратно.

Или всего за 2500 рублей в один конец.

Билеты доступны на сайте авиакомпании и aviasales.ru.

Пример бронирования:

1 day, 16 hours назад @ vandrouki.ru
Atlas Obscura: Stories Atlas Obscura: Stories
последний пост 5 часов назад
Concord’s Colonial Inn in Concord, Massachusetts
Concord’s Colonial Inn in Concord, Massachusetts Concord’s Colonial Inn in Concord, Massachusetts

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

5 часов назад @ atlasobscura.com
Eriksbergskranen in Gothenburg, Sweden
Eriksbergskranen in Gothenburg, Sweden Eriksbergskranen in Gothenburg, Sweden

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

6 часов назад @ atlasobscura.com
World’s Largest Department Store in Busan, South Korea
World’s Largest Department Store in Busan, South Korea World’s Largest Department Store in Busan, South Korea

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

7 часов назад @ atlasobscura.com
Skull Rock in Twentynine Palms, California
Skull Rock in Twentynine Palms, California Skull Rock in Twentynine Palms, California

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

8 часов назад @ atlasobscura.com
Museum of Olomouc Cheese in Loštice, Czechia
Museum of Olomouc Cheese in Loštice, Czechia Museum of Olomouc Cheese in Loštice, Czechia

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

9 часов назад @ atlasobscura.com
The Artist Turning Bones Into Beautiful Dishware
The Artist Turning Bones Into Beautiful Dishware The Artist Turning Bones Into Beautiful Dishware

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

10 часов назад @ atlasobscura.com
Ganga Caves in Bontoc, Philippines
Ganga Caves in Bontoc, Philippines Ganga Caves in Bontoc, Philippines

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

10 часов назад @ atlasobscura.com
John Calvin's Grave in Geneva, Switzerland
John Calvin's Grave in Geneva, Switzerland John Calvin's Grave in Geneva, Switzerland

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

11 часов назад @ atlasobscura.com
Liberty Aviation Museum in Port Clinton, Ohio
Liberty Aviation Museum in Port Clinton, Ohio Liberty Aviation Museum in Port Clinton, Ohio

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

13 часов назад @ atlasobscura.com
Presidential Pageantry: Our Favorite Reads
Presidential Pageantry: Our Favorite Reads Presidential Pageantry: Our Favorite Reads

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

14 часов назад @ atlasobscura.com
The Twisted History Behind Medieval Torture Museums
The Twisted History Behind Medieval Torture Museums The Twisted History Behind Medieval Torture Museums

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

1 day, 4 hours назад @ atlasobscura.com
Omega Mart at Area 15 in Las Vegas, Nevada
Omega Mart at Area 15 in Las Vegas, Nevada Omega Mart at Area 15 in Las Vegas, Nevada

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

1 day, 4 hours назад @ atlasobscura.com
Tower of Centocelle (Torre di Centocelle) in Rome, Italy
Tower of Centocelle (Torre di Centocelle) in Rome, Italy Tower of Centocelle (Torre di Centocelle) in Rome, Italy

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

1 day, 5 hours назад @ atlasobscura.com
The Ghost Town of Nothing, Arizona in Nothing, Arizona
The Ghost Town of Nothing, Arizona in Nothing, Arizona The Ghost Town of Nothing, Arizona in Nothing, Arizona

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

1 day, 6 hours назад @ atlasobscura.com
Kaleidoscope Desert in Morongo Valley, California
Kaleidoscope Desert in Morongo Valley, California Kaleidoscope Desert in Morongo Valley, California

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

1 day, 7 hours назад @ atlasobscura.com
T—Ж T—Ж
последний пост 9 часов назад
Владельцы россий­ских электро­моби­лей смогут до конца 2025 года бесплатно ездить по платным трассам
Владельцы россий­ских электро­моби­лей смогут до конца 2025 года бесплатно ездить по платным трассам 9 часов назад @ journal.tinkoff.ru
«Главные враги — вода и мороз»: инженер — о том, как укладывают асфальт на дорогах
«Главные враги — вода и мороз»: инженер — о том, как укладывают асфальт на дорогах 10 часов назад @ journal.tinkoff.ru
Почему растут цены и когда замедлится инфляция: итоги 2024 года и про­гнозы на 2025
Почему растут цены и когда замедлится инфляция: итоги 2024 года и про­гнозы на 2025

Годовая инфляция в России по итогам 2024 года составила 9,52%. Это ощутимо больше, чем в 2023, и вдвое выше прогнозов, которые изначально давали российские власти и аналитики. Инфляция остается высокой даже несмотря на беспрецедентно жесткую политику Центрального банка. Разберемся, почему цены в России продолжают быстро расти и чего ждать от них в будущем.

10 часов назад @ journal.tinkoff.ru
В Стамбуле подоро­жает общественный транспорт и такси
В Стамбуле подоро­жает общественный транспорт и такси 10 часов назад @ journal.tinkoff.ru
«Носферату»: жут­кий ремейк вампир­ской классики от режис­сера «Ведьмы» и «Маяка»
«Носферату»: жут­кий ремейк вампир­ской классики от режис­сера «Ведьмы» и «Маяка» 11 часов назад @ journal.tinkoff.ru
Что послушать про бизнес: 23 под­каста для предпри­нимателей
Что послушать про бизнес: 23 под­каста для предпри­нимателей

Которые понравятся не только предпринимателям

11 часов назад @ journal.tinkoff.ru
«Настоящая боль»: драмеди с Кираном Калкином и Джесси Айзенбергом о поиске себя
«Настоящая боль»: драмеди с Кираном Калкином и Джесси Айзенбергом о поиске себя 11 часов назад @ journal.tinkoff.ru
20 упражнений со стулом на все тело
20 упражнений со стулом на все тело 12 часов назад @ journal.tinkoff.ru
«Кризис смыслов во всем мире»: Рубен Ениколопов про экономику сейчас
«Кризис смыслов во всем мире»: Рубен Ениколопов про экономику сейчас 12 часов назад @ journal.tinkoff.ru
«Министерство Всего Хорошего»: бодрая российская комедия о работе небесной канцеля­рии
«Министерство Всего Хорошего»: бодрая российская комедия о работе небесной канцеля­рии 12 часов назад @ journal.tinkoff.ru
Нейросеть Dream­Face заставляет котов и собак петь песни — как сделать такое видео со своим питомцем
Нейросеть Dream­Face заставляет котов и собак петь песни — как сделать такое видео со своим питомцем 12 часов назад @ journal.tinkoff.ru
Лучшие ноутбуки для работы: 9 удачных моделей
Лучшие ноутбуки для работы: 9 удачных моделей

Разобрались за вас и нашли 9 вариантов

14 часов назад @ journal.tinkoff.ru
7 лучших игр 2024 года для PlayStation 5
7 лучших игр 2024 года для PlayStation 5 15 часов назад @ journal.tinkoff.ru
Как приготовить леденцы на палочке: простой рецепт для взрослых и детей
Как приготовить леденцы на палочке: простой рецепт для взрослых и детей 15 часов назад @ journal.tinkoff.ru
Говорят, что тара­каны на кухне — угроза для здоровья. Правда?
Говорят, что тара­каны на кухне — угроза для здоровья. Правда? 16 часов назад @ journal.tinkoff.ru
Европейское айти
EU-startups EU-startups
последний пост 5 months, 3 weeks назад
London-based femtech Flo Health secures more than €180 million Series C and achieves unicorn status
London-based femtech Flo Health secures more than €180 million Series C and achieves unicorn status

Flo Health, one of the most downloaded women’s health apps worldwide, announced it has raised more than €180 million in a Series C investment from General Atlantic. This minority investment propels Flo’s valuation beyond $1 billion, making it the first purely digital consumer women’s health app to achieve unicorn status, according to the company. Flo […]

The post London-based femtech Flo Health secures more than €180 million Series C and achieves unicorn status appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Discover.Dealflow: Transforming Fundraising for EU-Funded Innovators
Discover.Dealflow: Transforming Fundraising for EU-Funded Innovators

Securing investment is a challenging and time-consuming process for many founders, often diverting their attention from growing their businesses. According to Horizon Dashboard and Dealroom, the EU directs about 20% of its funding towards SMEs, but within this group of funded SMEs, only 7% manage to secure additional investment from venture capitalists. This indicates that […]

The post Discover.Dealflow: Transforming Fundraising for EU-Funded Innovators appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Unlocking China’s startup ecosystem: How CIIE’s innovation incubation empowers global entrepreneurs (Sponsored)
Unlocking China’s startup ecosystem: How CIIE’s innovation incubation empowers global entrepreneurs (Sponsored)

The 7th China International Import Expo (CIIE) will be held from November 5th to 10th, 2024, at the National Exhibition and Convention Center (Shanghai). Organized by the Ministry of Commerce of China and the Shanghai Municipal Government. The CIIE promotes trade liberalization and economic globalization, facilitates global economic cooperation, and drives world economic growth and […]

The post Unlocking China’s startup ecosystem: How CIIE’s innovation incubation empowers global entrepreneurs (Sponsored) appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
London-based Stairpay raises €890k to automate the entire shared ownership journey
London-based Stairpay raises €890k to automate the entire shared ownership journey

Stairpay, a platform that simplifies the customer journey of shared ownership to help more people achieve their dream of owning a home, has raised €890k in pre-seed funding. The round was led by Fuel Ventures, with participation from Heartfelt Ventures. Angel investors such as Rob Hamilton, who built and sold Instant Offices to private equity […]

The post London-based Stairpay raises €890k to automate the entire shared ownership journey appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Berlin-based Amperecloud gets €3.3 million to become the operating system for renewable energies
Berlin-based Amperecloud gets €3.3 million to become the operating system for renewable energies

Berlin-based Amperecloud, a company empowering efficiency in energy asset management, has successfully closed a €3.3 Million Series A+ financing round led by Encevo, one of Europe’s leading and sustainable energy players. Additionally, Point9, Vireo Electrification Fund and many other existing shareholders took part in the round as well. The total investment raised now adds up […]

The post Berlin-based Amperecloud gets €3.3 million to become the operating system for renewable energies appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Dutch startup OpusFlow secures €1.7 million to streamline sustainable installers’ operations
Dutch startup OpusFlow secures €1.7 million to streamline sustainable installers’ operations

Deventer-based OpusFlow, a pioneering all-in-one ERP solution for sustainable installers announced a €1.7 million investment from B2B SaaS investor Peak. Launched in November 2022, OpusFlow emerged to focus exclusively on developing modular ERP functionalities for sustainable installation companies specializing in sustainable technologies such as solar panels, heat pumps, home-batteries and electric vehicle charging stations. Unlike […]

The post Dutch startup OpusFlow secures €1.7 million to streamline sustainable installers’ operations appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
EIT Health Catapult finalist “Pan Cancer T” closes a €4 million seed extension funding round (Sponsored)
EIT Health Catapult finalist “Pan Cancer T” closes a €4 million seed extension funding round (Sponsored)

Building a successful healthcare startup is fraught with challenges, from navigating regulatory hurdles to securing substantial funding for clinical translation. While early-stage investment in Europe has accelerated, significant gaps remain for larger capital rounds crucial for clinical progress. This is where programmes like EIT Health Catapult become invaluable, offering a robust platform for startups to […]

The post EIT Health Catapult finalist “Pan Cancer T” closes a €4 million seed extension funding round (Sponsored) appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Insperanto reserves €5 million for EU-Startups.com readers’ IP needs – Apply today!
Insperanto reserves €5 million for EU-Startups.com readers’ IP needs – Apply today!

Intellectual property (IP) is crucial for startups and scale-ups and needs to be protected, as a companies’ innovations and creative works are driving progress and competitive advantage. IP rights provide legal protection, helping to secure your inventions, designs, and brands from unauthorised use by others. By safeguarding your intellectual property, you can maintain exclusivity, attract […]

The post Insperanto reserves €5 million for EU-Startups.com readers’ IP needs – Apply today! appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Mannheim-based osapiens raises €110.7 million Series B to help companies navigate ESG regulation
Mannheim-based osapiens raises €110.7 million Series B to help companies navigate ESG regulation

osapiens, a leading ESG Platform and provider of compliance and sustainability reporting solutions, announced the completion of a €110.7 million Series B financing round led by Growth Equity at Goldman Sachs Alternatives. The funds will be used to accelerate international expansion and further invest in the technology platform, helping to make business operations more compliant, […]

The post Mannheim-based osapiens raises €110.7 million Series B to help companies navigate ESG regulation appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
London-based Female Invest bags €10.3 million Series A to be the largest finance app for women
London-based Female Invest bags €10.3 million Series A to be the largest finance app for women

Female Invest, a leading finance app that empowers women through accessible subscription-based learning, financial news, and community, announced the close of its Series A funding round, raising a total of €10.3 million. The platform, designed to help women maximise their financial potential and start investing, boasts over 73,000+ paying members across 123 countries and a […]

The post London-based Female Invest bags €10.3 million Series A to be the largest finance app for women appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
VDS: Steve Chen, Randi Zuckerberg, and Juan Antonio Samaranch lead lineup of top speakers (Sponsored)
VDS: Steve Chen, Randi Zuckerberg, and Juan Antonio Samaranch lead lineup of top speakers (Sponsored)

VDS, one of Southern Europe’s most prominent international tech events, will take place on October 23-24, at the iconic City of Arts and Sciences in Valencia. Featuring a lineup of stellar business leaders from major companies and top venture capital firms, VDS is set to be an unmissable event for tech innovation professionals and enthusiasts […]

The post VDS: Steve Chen, Randi Zuckerberg, and Juan Antonio Samaranch lead lineup of top speakers (Sponsored) appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
London-based Kennet closes sixth fund at €266 million to invest in B2B SaaS across Europe
London-based Kennet closes sixth fund at €266 million to invest in B2B SaaS across Europe

Transatlantic growth equity investor Kennet has raised €266 million for its largest fund to date, Kennet VI. Kennet has already begun to deploy this capital into capital-efficient B2B SaaS companies across Europe, including Screendragon in Ireland and the UK, and Fluid Topics in France. Kennet VI builds on the success of the previous five funds’ […]

The post London-based Kennet closes sixth fund at €266 million to invest in B2B SaaS across Europe appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Amsterdam-based Epum raises a €1.47 million to reinvent commercial real estate development research
Amsterdam-based Epum raises a €1.47 million to reinvent commercial real estate development research

Epum, an innovative Amsterdam and NYC-based startup dedicated to transforming the commercial real estate development industry, announced a €1.47 million pre-seed funding round. The funding round was over 150% oversubscribed and was led by Dutch AI investor Curiosity VC, with co-investments from NP-Hard Ventures, Remote First Capital, and Heartfelt VC. This capital will allow the […]

The post Amsterdam-based Epum raises a €1.47 million to reinvent commercial real estate development research appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Weekly funding round-up! All of the European startup funding rounds we tracked this week (July 22 – 26)
Weekly funding round-up! All of the European startup funding rounds we tracked this week (July 22 – 26)

This article is visible for CLUB members only. If you are already a member but don’t see the content of this article, please login here. If you’re not a CLUB member yet, but you’d like to read members-only content like this one, have unrestricted access to the site and benefit from many additional perks, you […]

The post Weekly funding round-up! All of the European startup funding rounds we tracked this week (July 22 – 26) appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Zurich-based Cowbell secures over €55 million to advance global SME cyber adoption
Zurich-based Cowbell secures over €55 million to advance global SME cyber adoption

Cowbell, a leading provider of cyber insurance for small and medium-sized enterprises, based both in Switzerland and California, has announced the successful closure of over €55 million Series C equity investment from Zurich Insurance Group (Zurich), a prominent global multi-line insurer. This significant investment will enable Cowbell to scale its operations to meet growing demand, […]

The post Zurich-based Cowbell secures over €55 million to advance global SME cyber adoption appeared first on EU-Startups.

5 months, 3 weeks назад @ eu-startups.com
Tech.eu Tech.eu
последний пост 10 часов назад
NXP Semiconductors secures €1B loan, UK unveils £14B AI infrastructure plan, and edtech in an AI-driven world
NXP Semiconductors secures €1B loan, UK unveils £14B AI infrastructure plan, and edtech in an AI-driven world NXP Semiconductors secures €1B loan, UK unveils £14B AI infrastructure plan, and edtech in an AI-driven world

This week we tracked more than 75 tech funding deals worth over €2.6 billion, and over 10 exits, M&A transactions, rumours, and related news stories across Europe.

In addition to this week's top financials, we've also indexed the most important/industry-related news items you need to know about.

If email is more your thing, you can always subscribe to our newsletter and receive a more robust version of this round-up delivered to your inbox.

Either way, let's get you up to speed.

Olo's sound holograms offer a scientifically-backed alternative🎮 Small studio, big impact: how MixRift is redefining MR gaming💊 From legacy systems to AI-power: How an Icelandic startup is transforming pharmaceutica…

10 часов назад @ tech.eu
Small studio, big impact: how MixRift is redefining MR gaming
Small studio, big impact: how MixRift is redefining MR gaming Small studio, big impact: how MixRift is redefining MR gaming

However, a mixed reality gaming company I met at the last Web Summit might have changed my mind.

Irish startup MixRift creates Mixed Reality (MR) games for Meta Quest and Apple Vision Pro.

And as someone with constant blurry vision, I find Mixed Reality a lot easier than other mediums.

There's a big opportunity for a gaming company, especially a small and quick indie company, to conquer the space.

"For example, games like Gorilla Tag demonstrate this through locomotion, emphasising physical movement and spatial awareness – 'native' mechanics impossible on traditional platforms.

14 часов назад @ tech.eu
Nexos.ai launches with Index Ventures-led funding to help enterprises deploy AI solutions at scale
Nexos.ai launches with Index Ventures-led funding to help enterprises deploy AI solutions at scale Nexos.ai launches with Index Ventures-led funding to help enterprises deploy AI solutions at scale

nexos, a digital platform for managing enterprise AI software, has emerged from stealth with an $8M fundraise led by Index Ventures, with participation from Creandum and Dig Ventures.

nexos.ai saves tech teams time by allowing enterprises to manage and optimise complex bundles of AI models across their organizations.

The platform provides access to over 200 AI models including OpenAI, Anthropic, Google, and Meta.

“nexos.ai is a critical solution for any enterprise deploying AI at scale, where managing the inherently complex ecosystem of large language models, AI agents, and applications with varying levels of autonomy becomes essential.

“At the same time, AI models are becoming increasingly…

14 часов назад @ tech.eu
NEURA Robotics secures €120M in Series B for its cognitive and humanoid robotics
NEURA Robotics secures €120M in Series B for its cognitive and humanoid robotics NEURA Robotics secures €120M in Series B for its cognitive and humanoid robotics

German humanoid robotics company NEURA Robotics raised €120 million in a Series B funding round bringing its funding to over €185 million.

Founded in 2019, NEURA Robotics has quickly become a global leader in cognitive and humanoid robotics, creating robots designed to work seamlessly with humans in industries such as manufacturing, logistics, and healthcare.

With its unique sensor technology and AI integration, NEURA Robotics has the world’s first cognitive cobot in the market.

I am proud that NEURA is the first one to ship a commercially-viable cognitive robot and remains the only humanoid robotics company in Germany.

Lead image: NEURA Robotics.

16 часов назад @ tech.eu
Hypefy scores $1.75M Seed for automated influencer marketing
Hypefy scores $1.75M Seed for automated influencer marketing Hypefy scores $1.75M Seed for automated influencer marketing

Hypefy, a provider of AI software designed to run entire influencer marketing campaigns from prompts, has raised $1.75M in seed funding.

The company produces "influencer marketing automation" software, which means it cultivates relationships between brands and audiences by combining influencer marketing with LLMs.

Its software Hypefy analyses past performance data, audience metrics, and market specific factors to optimize influencer marketing campaigns end to end.

Using machine learning and AI models, Hypefy aims to eliminate "major inefficiencies" in influencer marketing spending for brands and digital marketing agencies.

Its aim is to lead the influencer marketing industry with more preci…

18 часов назад @ tech.eu
Namirial acquires Digital Technologies
Namirial acquires Digital Technologies Namirial acquires Digital Technologies

Fintech platform Namirial has acquired Digital Technologies, a digital transaction management software with a focus on document workflow hyper-automation and invoicing.

Headquartered in Trezzano sul Naviglio, Italy, Digital Technologies enables large corporations across industrial sectors to digitalise and automate finance, legal and supply-chain business processes by automating its documents, facilitatting e-invoicing and adjacent digital trust solutions such as digital signature, digital archiving, and e-payments.

Namirial will benefit from access to Digital Technologies' e-invoicing hub that serves multiple international jurisdictions, effectively all countries that have already integrat…

1 day, 11 hours назад @ tech.eu
Recharge eyes acquisitions after securing €45M debt facility
Recharge eyes acquisitions after securing €45M debt facility Recharge eyes acquisitions after securing €45M debt facility

Amsterdam-based fintech Recharge has secured a €45M debt facility, which it says it will use to target acquisitions.

The digital voucher and prepaid card fintech has secured the debt financing through ABN AMRO, which it says it will also use to enter new markets.

As well as eyeing up targets across B2B and B2C in Europe, Recharge says it is looking at possible acquisition targets further afield.

In 2023, Recharge, which employs around 150 staff, acquired Startselect, a Dutch digital gift and gaming cards company.

Now it is on the hunt for more acquisitions, saying it hopes to close two to three deals this year.

1 day, 11 hours назад @ tech.eu
BeZero Carbon raises $32M Series C to expand global carbon ratings services
BeZero Carbon raises $32M Series C to expand global carbon ratings services BeZero Carbon raises $32M Series C to expand global carbon ratings services

Global carbon ratings agency BeZero Carbon has raised $32 million Series C, bringing its funding to over $104 million.

London-headquartered BeZero Carbon is a global ratings agency for the voluntary carbon market, providing independent assessments of carbon credits' efficacy in achieving CO2 avoidance or removal.

The fundraise cements the role of independent, risk-based, project-level ratings as a measure of quality for carbon markets.

Now, in 2025, every incremental BeZero Carbon Rating notch on BeZero’s 8-point rating scale commands an average 40 per cent price premium.

“We believe BeZero's carbon ratings enhance the transparency and reliability of the carbon market, attracting greater ca…

1 day, 13 hours назад @ tech.eu
AI investment surge: The 10 biggest deals in Europe in 2024
AI investment surge: The 10 biggest deals in Europe in 2024 AI investment surge: The 10 biggest deals in Europe in 2024

German companies followed in second place with €910.3 million raised over 23 deals, while the UK ranked third with €318.1 million raised over 33 deals.

Stability AI (UK)Amount raised in 2024: $80MStability AI is open-source generative AI company dedicated to unlocking humanity's potential through advanced artificial intelligence.

Mistral AI (France)Amount raised in 2024: €600MMistral AI is a leading artificial intelligence company specializing in open and portable generative AI solutions for developers and businesses.

The company's mission is to make frontier AI ubiquitous by providing tailor-made AI solutions to builders.

In a short period, Mistral AI has achieved significant milestones, i…

1 day, 13 hours назад @ tech.eu
Squire secures Entourage funding to boost AI-powered GP report automation
Squire secures Entourage funding to boost AI-powered GP report automation Squire secures Entourage funding to boost AI-powered GP report automation

Squire has developed an AI solution to automate general practitioners' (GPs) consultation reports, reducing time spent on admin.

For every consultation, Flemish GPs must write a SOEP (Subjective, Objective, Evaluation and Plan) report on the patient and the diagnosis.

“With Squire and recent developments in AI, we can help halve the time GPs spend on administration.

According to Bâlâ Kirimli, a GP in Ghent:“The software supports me in preparing consultation reports.

Immediate priorities include enhancing the product's functionality and integrating it seamlessly with existing GP software.

1 day, 14 hours назад @ tech.eu
Crowdfunding investors bag returns as UK startup Freetrade snapped up for £160M
Crowdfunding investors bag returns as UK startup Freetrade snapped up for £160M Crowdfunding investors bag returns as UK startup Freetrade snapped up for £160M

Crowdfunding investors in UK startup Freetrade will see a financial return after the commission-free trading app was today acquired by the listed trading platform and spread betting group IG Group in a £160M deal.

FTSE-250 listed IG Group said Freetrade would strengthen its UK trading and investment offering and open it up to new customers while Freetrade said the deal would speed up its growth.

The UK startup has been heavily invested in through crowdfunding raises, raising nearly £30m through crowdfunding platform Crowdcube, so those investors will see a return on their investments.

According to fintech analyst Seb Johnson, Freetrade A Ordinary share and B Investment shareholders will rec…

1 day, 15 hours назад @ tech.eu
Progressive Robotics secures €1.55M
Progressive Robotics secures €1.55M Progressive Robotics secures €1.55M

Greek Robotics startup Progressive Robotics, has completed a €1.55M seed funding round led by Marathon Venture Capital with the participation of existing investors Genesis Ventures.

This investment aims to accelerate the company’s mission of providing small and medium-sized enterprises (SMEs) with AI-powered, no-code automation.

Progressive Robotics’ technology assists robotic arm deployment by enabling operators to configure and reprogram robots.

“Our vision is to empower businesses, large and small, by removing the barriers to robotic adoption,” said Fotis Dimeas, CEO of Progressive Robotics.

Progressive Robotics has also partnered with robotic OEMs including ABB Robotics, Elite Robots, a…

1 day, 15 hours назад @ tech.eu
Green Flexibility secures €400M from Partners Group for large-scale battery storage systems
Green Flexibility secures €400M from Partners Group for large-scale battery storage systems Green Flexibility secures €400M from Partners Group for large-scale battery storage systems

German developer of large-scale battery storage systems green flexibility has received over €400 million in funding from Partners Group to help meet the increasing demand for grid stability and flexibility through battery storage and to actively drive the energy transition.

Battery storage systems (BESS) store excess energy when generation is high and release it when needed to stabilise the grid, reduce curtailments and smooth energy prices for consumers and companies.

green flexibility specialises in the development and long-term operation of large-scale battery storage systems that serve as the backbone of a modern, flexible energy infrastructure in Europe.

It builds and operates large ba…

1 day, 16 hours назад @ tech.eu
Vet services platform Lupa raises $4M Seed
Vet services platform Lupa raises $4M Seed Vet services platform Lupa raises $4M Seed

Lupa, a vet services platform, has raised a $4M seed from firstminute capital, 2100 Ventures and Vento by Exor Ventures.

Lupa's platform is predicated on the claim that vets spend 10-20 hours per week on administrative tasks that could be automated.

The platform does not make the overall decision on treatment, which will always ultimately lie with the qualified veterinarian.

Sam Endacott, Partner at Firstminute Capital, said: "Lupa’s vision of unifying veterinary workflows into a single, powerful platform addresses a critical industry need.

With pet ownership at record highs and a growing vet shortage, the timing couldn't be better for a modern, AI-native solution.

1 day, 16 hours назад @ tech.eu
TalentMapper raises £2M for HR analysis
TalentMapper raises £2M for HR analysis TalentMapper raises £2M for HR analysis

Talent Mapper, a London-based company whose platform that pinpoints employees' skills, has raised £2M from Mercia Ventures and Haatch.

TalentMapper allows HR teams to analyse capabilities and potential of the workforce - reducing the cost of recruitment and training - and helps to ensure equal access to career opportunities.

Talentmapper is more applicable to companies with over 250 employees.

By putting the emphasis on skills, TalentMapper also helps ensure employees are promoted for their capabilities.

TalentMapper is a forerunner in the emerging field of SkillTech which aims to address these challenges.

1 day, 16 hours назад @ tech.eu
TechCrunch: Europe TechCrunch: Europe
последний пост 11 часов назад
Europe orders Elon Musk’s X to submit documents on its recommendation algorithms
Europe orders Elon Musk’s X to submit documents on its recommendation algorithms

The European Commission (EC) says it has requested information from Elon Musk’s X related to the algorithms that determine the content it recommends to users. The EC wants to determine how those algorithms may or may not be compliant with the Digital Services Act (DSA), which imposes key obligations on online platforms operating across the […]

© 2024 TechCrunch. All rights reserved. For personal use only.

11 часов назад @ techcrunch.com
TikTok’s e-commerce ‘Shop’ platform launches in Spain
TikTok’s e-commerce ‘Shop’ platform launches in Spain

TikTok’s e-commerce Shop feature is going live in Spain, the company announced on Tuesday, marking the first step of a wider European rollout. The launch indicates that TikTok parent ByteDance is speeding up the expansion of the TikTok Shop in European markets as a potential U.S. ban looms. Users in Spain will now be able […]

© 2024 TechCrunch. All rights reserved. For personal use only.

1 month, 1 week назад @ techcrunch.com
EU closes antitrust probe into Apple’s e-book and audiobook rules after complaint withdrawn
EU closes antitrust probe into Apple’s e-book and audiobook rules after complaint withdrawn

The European Commission (EC) has quietly closed a longstanding antitrust investigation into Apple over rules it enforces against third-party e-book and audiobook app developers. The EC opened the probe back in 2020 after receiving complaints over how Apple forced competing e-book and audiobook app developers to use Apple’s own in-app payment system, while also preventing […]

© 2024 TechCrunch. All rights reserved. For personal use only.

1 month, 3 weeks назад @ techcrunch.com
Founders and VCs back a pan-European C corp, but an ‘EU Inc’ has a rocky road ahead
Founders and VCs back a pan-European C corp, but an ‘EU Inc’ has a rocky road ahead

It’s become a common refrain in political discourse: Europe needs to take radical action to remain competitive. On the long list of potential reforms, one that’s gaining particular traction is a new, EU-wide corporate status for innovative companies. Known (somewhat obscurely) as the “28th regime,” the innovation is being billed as Europe’s answer to a […]

© 2024 TechCrunch. All rights reserved. For personal use only.

2 months, 3 weeks назад @ techcrunch.com
Are Cybertrucks too angular for Europe?
Are Cybertrucks too angular for Europe?

Tesla’s Cybertruck is facing blowback in Europe, particularly over pedestrian safety concerns. Euro NCAP, a voluntary but influential car safety assessment program in Europe, has not in any way tested the Cybertruck, but based on a visual assessment alone, raised alarms over its sharp, angular design, saying it could pose a serious threat to pedestrians. […]

© 2024 TechCrunch. All rights reserved. For personal use only.

3 months назад @ techcrunch.com
India, grappling with election misinfo, weighs up labels and its own AI safety coalition
India, grappling with election misinfo, weighs up labels and its own AI safety coalition

India, long in the tooth when it comes to co-opting tech to persuade the public, has become a global hotspot when it comes to how AI is being used, and abused, in political discourse, and specifically the democratic process. Tech companies, who built the tools in the first place, are making trips to the country […]

© 2024 TechCrunch. All rights reserved. For personal use only.

9 months, 2 weeks назад @ techcrunch.com