Searching We.Love.Privacy.Club

Twts matching #test
Sort by: Newest, Oldest, Most Relevant

Beta 4 of iOS 18.4, iPadOS 18.4, MacOS Sequoia 15.4, Available for Testing
Apple has released the fourth beta version of iOS 18.4, MacOS Sequoia 15.4, and iPadOS 18.4, all of which are set to be fairly minor software updates but do include a handful of new features, and will also include the usual round of bug fixes and security enhancements. New features currently being tested in these … [Read More](https://osxdaily.com/2025/03/17/beta-4-of-ios-18-4-ipados-18-4 … ⌘ Read more

⤋ Read More

Shift-Left Testing with Testcontainers: Catching Bugs Early with Local Integration Tests
Learn how integration tests can help you catch defects earlier in the developers inner loop and how Testcontainers can make them feel as easy as unit tests. ⌘ Read more

⤋ Read More

Expanding Open-Source Support for MediaTek’s Genio IoT Platforms with Collabora
MediaTek continues to strengthen upstream support for its Genio IoT platforms through its collaboration with Collabora. Following the initial efforts to integrate Genio EVKs into the open-source ecosystem, recent updates bring improvements to the Linux kernel, Debian-based images, and automated testing frameworks. These enhancements ensure broader compatibility and long-term support for … ⌘ Read more

⤋ Read More

Show HN: Seven39, a social media app that is only open for 3 hours every evening
I built this site as a quick test if a time boxed social media experience feels better than an endless one. So far I’ve just been using it with friends and it feels nice, but it seems like it is time to bring it to a larger audience.

Let me know what you think! It is just based on EST for now, sorry.

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

Points: 500

# Comments: 253 ⌘ Read more

⤋ Read More

selsta posts February 2025 Monero dev report
selsta1 has posted a monthly CCS progress report2 for February 2025, which includes several Monero dev updates.

Milestone 3:
* v0.18.4.0 is code-ready and currently in testing phase
* Traced down a bug in a recently merged PR that is part of v0.18.4.0
* Handle the recent DDoS attempt on public nodes

Note that misc work is not explicitly mentioned in these updates. The full list of changes can be found on Github3’[4 … ⌘ Read more

⤋ Read More

3rd Beta of iOS 18.4, MacOS Sequoia 15.4, iPadOS 18.4, Available for Testing
Apple has released the third beta version of MacOS Sequoia 15.4, iOS 18.4, and iPadOS 18.4, for users who are participating in the beta testing programs for Apple system software. These beta builds are working on a variety of new features and capabilities, including refinements to Apple Intelligence, the controversial and frustrating sorted Mail Categories … [Read More](https://osxdai … ⌘ Read more

⤋ Read More

@lyse@lyse.isobeef.org OK. So how I have worked things like this out is to have the interface in the root package from the implementations. The interface doesn’t need to be tested since it’s just a contract. The implementations don’t need to import storage.Storage

  • storage/ defines the Storage interface (no tests!)
    • storage/sqlite for the sqlite implementation tests for sqlite directly
    • storage/ram for the ram implementation and tests for RAM directly
  • controller/ can now import both storage and the implementation as needed.

So now I am guessing you wanted the RAM test for testing queries against sqlite and have it return some query response?

For that I usually would register a driver for SQL that emulates sqlite. Then it’s just a matter of passing the connection string to open the registered driver on setup.

https://github.com/glebarez/go-sqlite?tab=readme-ov-file#connection-string-examples

⤋ Read More

Cake Wallet v4.23.3 pre-release available for testing
Cake Labs1 has released Cake Wallet beta version 4.23.32 for public beta testing:

This release brings a few minor bug fixes, migrates Quantex -> SwapTrade and re-enables them by default for swaps, and adds a new exchange called Kryptonim for buying and selling crypto in many jurisdictions.

Changes overview


Token whitelisting to better protect against scams
SwapTrade exchange enabled by default
UI enhancement ... ⌘ [Read more](https://monero.observer/cake-wallet-v4.23.3-pre-release-available-testing/)

⤋ Read More

Beta 2 of iOS 18.4, MacOS Sequoia 15.4, iPadOS 18.4, Available for Testing
The second beta versions of iOS 18.4, iPadOS 18.4, and MacOS Sequoia 15.4 are available for users enrolled in the beta testing programs for the Apple operating system suite. The latest beta builds continue to refine Apple Intelligence features, add a new Ambient music feature from Control Center, and for iPadOS and MacOS include the … [Read More](https://osxdaily.com/2025/03/03/beta-2-of- … ⌘ Read more

⤋ Read More

Beta 2 of iOS 18.4, MacOS Sequoia 15.4, iPadOS 18.4, Available for Testing
The second beta versions of iOS 18.4, iPadOS 18.4, and MacOS Sequoia 15.4 are available for users enrolled in the beta testing programs for the Apple operating system suite. The latest beta builds continue to refine Apple Intelligence features, add a new Ambient music feature from Control Center, and for iPadOS and MacOS include the … [Read More](https://osxdaily.com/2025/03/03/beta-2-of- … ⌘ Read more

⤋ Read More

selsta submits CCS proposal for 3 months of Monero dev work until end of May 2025
selsta1 has submitted a new CCS proposal2 to continue working part-time on Monero development for 3 more months, until the end of May 2025:

Work for 30 hours per week over the next 3 months (from March to end of May) at a rate of 50€ / hour. At 210€ / XMR this makes ~93 XMR.

Total funding: 93 XMR.

ETA: (end of) May 2025.

The dev will continue testing and reviewing PR’s, Mone … ⌘ Read more

⤋ Read More

Monero Dev Activity Report - Week 9 2025: 20 PRs, 9 Issues
This weekly report aims to provide a big picture view of Monero development activity, increase community support for existing devs and, hopefully, encourage new contributions.

1 - PRs (20, 4:0:16)

Opened (4)

monero-project/monero:

  • #98211 Fix HTTP unit tests (broken with new Boost versions) (vtnerd)
  • #98202 Add incoming only test (vtnerd)
  • #98233 Add incoming only test [0.18] (vtnerd)
  • **#9824 … ⌘ Read more

⤋ Read More

使用 Go Convey 做 BDD 測試的入門指南
前面在「Go 代碼測試時怎麼打樁?給大家寫了幾個常用案例」中我們介紹了在單元測試中使用gomonkey爲代碼進行打樁的各種方法。今天我們介紹在 Go 單元測試中另外一個很好用的工具庫goconvey,上面說的gomonkey屬於在 Test Double 方面提供能力,也就是我們通常說的mock,用它們可以自定義一套實現來替換項目中的代碼實現。而goconvey則是一個幫助我們組織和管理測試用例的 ⌘ Read more

⤋ Read More

My hypothesis about that thing breaking my twts is that it might have something to do with the parenthesis surrounding the root twt hash in the replay twt-A when I replay to it with fork-twt-B; I imagine elisp interpreting those as a s-expression thus breaking the generation precess of hash (#twt-A) before prepending it to for-twt-B … but then I’m too ignorant to figure out how to test my theory (heck I couldn’t even recalculate the hashes myself correctly in bash xD). I’ll keep trying tho.

⤋ Read More

@andros@twtxt.andros.dev yes, that usually happens when twts get edited and we just made a gentlemen agreement to avoid edits as much as possible (at least for the time being). But the thing is, That is not what’s happening with my broken twts’ hashes. Since I’ve bee mostly replaying to my own twts as a test and I know for sure that I haven’t edited any. (I usually fork-replay instead of edit a twt when needed)

⤋ Read More

@andros@twtxt.andros.dev hmmm… pretty strange, isn’t it? replaying to threads worked perfectly, I’ve only had that problem trying to replay to a twt that was part of a thread.

As an example, this one is a Fork-Replay from Jenny. My next twt will be a replay to this exact twt but from twtxt-el as a test.
Then I’will file an issue if it doesn’t behave the way it’s supposed to. Cheers!

⤋ Read More

Beta 1 of iOS 18.4, iPadOS 18.4, MacOS Sequoia 15.4, Available for Beta Testers
Apple has released the first beta version of iOS 18.4, iPadOS 18.4, and MacOS Sequoia 15.4, for users enrolled in the beta testing programs for Apple system software. The new beta updates look to add some additional features to Apple Intelligence for all eligible devices, add the polarizing Mail Categories feature from iPhone to iPad, … [Read More](https://osxdaily.com/2025/02/2 … ⌘ Read more

⤋ Read More

Monero Dev Activity Report - Week 7 2025: 40 PRs, 9 Issues
This weekly report aims to provide a big picture view of Monero development activity, increase community support for existing devs and, hopefully, encourage new contributions.

1 - PRs (40, 3:2:35)

Opened (3)

monero-project/monero:

  • #97951 tests: Speed up p2p reorg test (iamamyth)
  • #97982 CoC: do not allow Maintainers to tag releases, unless core is not available within a reasonable time (tobtoht)

monero-proj ... ⌘ [Read more](https://monero.observer/monero-dev-activity-report-week-7-2025/)

⤋ Read More

hinto-janai submits CCS proposal for 3 months of full-time Cuprate, Monero/FCMP++ work
hinto-janaiyo1 has submitted a new CCS proposal2 looking to continue full-time development work on Cuprate 3 and contribute to Monero (FCMP++ reviews) for 3 months:

Cuprate is preparing its first alpha release, with a 4-week cycle. [..] I will be buying/renting a variety of hardware for testing/development and will post receipts for all hardware acquired a … ⌘ Read more

⤋ Read More

Hiring: Senior FullStack Engineer | Remote (Brazil) | | A new challenge awaits!
What are we looking for? 👀

Most Important 🎯

  • 7 years of experience in Fullstack Software Development.
  • Proficiency in Golang and Ruby on Rails for backend development.
  • Strong experience with TypeScript and React for frontend development.
  • Solid understanding of GraphQL and microservices architecture.
  • Experience working with PostgreSQL, MongoDB, or DynamoDB.
  • Hands-on experience with unit & integration testing to ensure code reliability.
  • Famil … ⌘ Read more

⤋ Read More

CAN FD Adapter for High-Speed Industrial and Embedded Communication in M.2 and Mini-PCIe Form Factors
The CAN FD Adapter enables high-speed CAN FD connectivity for embedded and industrial applications. Available in M.2 B-key and mini-PCIe form factors, it supports data rates from 12.5 kbit/s to 8 Mbit/s. It integrates with systems used in industrial monitoring, robotics, automation, hardware-in-the-loop testing, remote access, and data loggin … ⌘ Read more

⤋ Read More

Erlang Solutions: 5 Reasons to Build Scalable and Concurrent Applications with Elixir
Businesses can’t afford sluggish, unresponsive systems, especially when dealing with high volumes of concurrent requests. Slow applications lead to lost revenue, frustrated users, and missed opportunities. This is where Elixir comes in.

Purpose-built for scalability and concurrency, Elixir runs on the battle-tested Erlang Virtual Machine (BEAM), a technology trusted to powe … ⌘ Read more

⤋ Read More
In-reply-to » I would like to drop Onedrive for Proton Drive and WhatsApp for Threema - I just need to convince my whole family to follow me with that.

@prologic@twtxt.net Or databag self-hosted on a RaspberryPi you can throw on a corner of your basement (or a small vps if one is willing to pay for threema) and never look back. The hardest part is getting others to at least test anything other than the already mainstream apps.

⤋ Read More

@andros@twtxt.andros.dev Sweeeeet! Just gave it a try, you’ve done a wonderful work 🫡 I wanted to replay from there but couldn’t go past the first page of the feed. It kept freezing on me and complaining about some bad Url (as mentioned on the test twt), so I’ll have to dig through my follow list and see where I effed up this time. 😅

⤋ Read More

Renode Enables Simulation of Ultra-Low-Power MSP430 Microcontrollers
Antmicro recently highlighted the MSP430 microcontroller family, renowned for its ultra-low-power design and versatility in applications such as IoT, automation, and space. Their article explores how the Renode simulation platform facilitates efficient testing and development of MSP430-based systems. The Texas Instruments MSP430 is a cost-effective, ultra-low-power family of microcontrollers with a custom i … ⌘ Read more

⤋ Read More

Cake Wallet adds XMR/WOW passphrase restore support
Cake Labs1 has released Cake Wallet v4.23.0-RC2 with support for Zano wallets, and passphase restore for Monero and Wownero:

The latest version of Cake Wallet is now live for public beta testing here on Github as well as on Google Play (testers channel) and Apple TestFlight. This release of Cake Wallet brings support for Zano, a privacy-preserving cryptocurrency with additional alias and token functionality to Cake Wal … ⌘ Read more

⤋ Read More

Release Candidate of iOS 18.3 & MacOS Sequoia 15.3 Available for Beta Testers
Apple has issued a Release Candidate build of iOS 18.3, iPadOS 18.3, and MacOS Sequoia 15.3, to users who are participating in the beta testing programs for Apple system software. There are also RC builds for tvOS 18.3, visionOS 2.3, and watchOS 11.3 as well. Release Candidate builds are typically made available at the end … [Read More](https://osxdaily.com/2025/01/22/release- … ⌘ Read more

⤋ Read More

HackCable: USB-C Keystroke Injection Cable with RP2040 or ESP32
Kickstarter recently featured the HackCable, a USB-C cable designed for cybersecurity research and system testing. It resembles a standard charging cable but includes features like built-in Wi-Fi and keystroke injection, providing a discreet and versatile tool for professionals and researchers. HackCable is available in two versions, each powered by a different microcontroller: the ESP32-S3 or […] ⌘ Read more

⤋ Read More

Beta 3 of iOS 18.3, iPadOS 18.3, MacOS Sequoia 15.3, Available for Beta Testers
The beta testing release cycle continues, this time with iOS 18.3 beta 3, iPadOS 18.3 beta 3, and macOS Sequoia 15.3 beta 3, each being made available to users participating in the beta testing programs from Apple. No major new features are arriving in these beta versions, though macOS Sequoia 15.3 will bring Genmoji creation … [Read More](https://osxdaily.com/2025/01/16/beta-3- … ⌘ Read more

⤋ Read More