Register and share your invite link to earn from video plays and referrals.

Search results for NotSponsored
NotSponsored community
One keyword maps to one global community path.
Create community
People
Not Found
Tweets including NotSponsored
Posting soon an unboxing video on my @theboomercloset channel, including this beauty that arrived today. @theXtakeover all merch here: #NotSponsored# (lol, I wish)
Show more
I got a fully autonomous robot lawn mower (not sponsored). It's mowing at full speed in these clips, and it's virtually silent. • Mows up to 1.5 acres • Adjustable cutting height: 0.75" to 4" • Max slope ability: 84% (40°) • Battery lasts up to ~2 hours or 0.27 acre per charge. 90 mins to recharge • Goes & docks itself to recharge • Auto-mapping • Can mow at night with its LED lights • 4WD with dual independent steering motors • IP66. Rain sensor • Cutting width: 17" • Can recognize and avoid 200+ object • You control everything from an app, including exclusion zones, cutting height, start/stop, etc. It's the Navimow X450, and has been working pretty well these last few weeks. Again, not sponsored lol, I just wanted to post about it. Might do a more long-term review in a couple months. The downside? The 1.5 acre version is $3k, but if you’re away a lot and can’t mow regularly, it’s a pretty cool piece of tech that should pay for itself over time compared to hiring someone, especially in rural areas where finding someone to cut the lawn can be hard.
Show more
0
216
2.1K
84
Forward to community
Iran has always been far worse than North Korea. North Korea has not sponsored as many terrorists as Iran has.
Hear me out, lol: If being able to buy a Cybercab in 2026 would need for it to have a temporary steering wheel, pedals and mirrors, would you still order one? PS.: this post is NOT sponsored by Ferzod (@farzyness )
Show more
Omarchy is the only operating system in 2026 built for AI If you take AI serious, you're making major mistake by not pulling a beater laptop out of your closet and installing Omarchy ASAP Here are 11 tips to get started: 1. Set up is painfully easy. Plug a USB thumb drive (I bought one for 10 bucks at Micro Center) into your normal computer. Go to any AI agent and say to flash the USB drive with Omarchy so you can install it on another computer. Tell it to walk you through step by step how to do it (it's dead simple and takes under 5 minutes) 2. You can use ANY computer. You don't need to buy a new one. There are people installing Omarchy on 15 year old laptops with 2gb of memory. Go to your closet and pull out your old college laptop. 3. Anything you don't like about the OS, just change it. Because the operating system is open source, you can edit the code. Anything you don't like (I didn't love the notification system) I just go to my chatgpt, hermes, or grok bot agents and just say "change this for me". Boom like magic it changes 4. Explore the plugins marketplace. There are some INCREDIBLE community made plugins for the OS. My favorite is a google calendar one that always shows my next meeting in my nav bar. 5. Build your own plugins. This is my favorite part about using open source software. It's never been easier to build your own plugins and contribute to the community. I'm building my own focus timer I'll ship in the next couple of days. 6. Make it your own. The built in themes to Omarchy are BEAUTIFUL. Explore them and see which one fits your vibe the most. I love Osaka nights. 7. Daily drive it. Once you get used to the keybinds and the way the OS works I promise it'll be impossible to go back to MacOS or especially Windows. Give yourself some time to learn the ins and outs. 8. Contribute to the community. Share your tips and tricks on social media. The more people we have using Omarchy, the more people build improvements, the better the OS is. 9. Customize the keybinds. Keybinds are the most important concept of Omarchy. It's an OS built to be used just with your keyboard. So make the keybinds your own. For instance I made super+A a pop up that allows me to quickly add a todo item to my list. Boosts my productivity a ton. To customize, just ask your AI agent to change them 10. If you are going to buy a new computer, I LOVE the Framework 13 Pro, altho the Dell XPS 14 is great too. I like the Framework a lot because it's MacBook Pro quality, but you literally have to build it yourself which made the computer really feel like my own (I'm not sponsored by anyone involved with this post btw) 11. Contribute to the community. The more people using Omarchy the better.
Show more
Hard to get enough fiber which is why colon cancer is on the rise. I use this brand (not sponsored). 5-10 grams of prebiotic fiber with Iron Feather collagen and whey.
Living in your car could be tough. I am using this amazing App. Everything you need for living in your car or long trips/campings in one place. (Not sponsored)
If you wanna switch to @Cloudflare Email Sending today, here's my prompt for you, as always I'm unaffiliated, not paid, not sponsored, but I like it, make sure you remove the space before the .com in the API url I added to avoid it becoming a link in this tweet: # Prompt: Migrate transactional email to Cloudflare Email Service Paste this into Claude Code (or Cursor, or any agent) running inside your project. --- I want to migrate this codebase's outbound email from its current provider (Postmark / SES / Resend / SendGrid / Mailgun / etc.) to Cloudflare Email Service (public beta, launched April 2026). Help me do this carefully. ## Context: what Cloudflare Email Service is A new transactional email API from Cloudflare. Endpoint: ``` POST .com/client/v4/accounts/{ACCOUNT_ID}/email/sending/send Authorization: Bearer {API_TOKEN} Content-Type: application/json ``` Request body: ```json { "to": "user@example.com", // string OR array of strings "from": "no-reply@yourdomain.com", // string OR {"address":"x@y","name":"Display"} "subject": "...", "html": "

...

", // optional "text": "...", // optional (one of html/text required) "cc": ["..."], // optional, array "bcc": ["..."], // optional, array "reply_to": "...", // optional, single string "headers": {"List-Unsubscribe": "<...>"} // optional, e.g. for newsletters } ``` Success response: HTTP 200 + `{"success":true,"result":{"delivered":[],"queued":[],"permanent_bounces":[]}}`. Failure: non-200 OR `success:false` OR non-empty `permanent_bounces`. Always check all three. Pricing: $5/mo Workers Paid plan + 3,000 emails free + $0.35 per 1k after. Roughly 5× cheaper than Postmark. No batch send endpoint — loop single sends. ## Steps you should follow ### 1. Verify prerequisites with me Before writing any code, ask me to confirm: - I have a Cloudflare Workers Paid plan ($5/mo) - I've onboarded my sender domain(s) in Cloudflare dashboard → Email → Email Sending → Onboard Domain (this auto-adds SPF/DKIM/DMARC + cf-bounce MX records) - I have an API token with `email_sending:write` scope (created at → Custom Token) - I have my Cloudflare account ID Don't proceed until you have these. ### 2. Recommend a domain reputation strategy Most apps should split senders across 2-3 subdomains so spam complaints on one don't drag down deliverability on others: - `mail.` or `members.` → transactional (login, receipts, password reset, in-app notifications) - `e.` → cold/recovery (abandoned cart, win-back campaigns) - `newsletter.` → opt-in newsletters with List-Unsubscribe headers Each subdomain needs to be onboarded separately in Cloudflare. Ask me which I want. ### 3. Audit existing email sends Use grep/search to find every place in this codebase that sends email. Look for: - The current provider's SDK class names, API URLs, env/config vars - Generic patterns like `mail()`, SMTP usage, `nodemailer`, etc. Group findings by email type/purpose (e.g. "magic-link login", "payment receipt", "weekly newsletter") rather than by file. Tell me what you found before changing anything. ### 4. Add a single helper function Don't sprinkle Cloudflare API calls across the codebase. Add one helper (provider-specific name like `sendEmailViaCloudflare()`) that: - Defaults `from` from a config var (don't hardcode) - Parses `"Name @domain>"` strings into the API's `{address, name}` object form - Accepts `cc`/`bcc` as either string or array - Accepts a `headers` dict (newsletters need `List-Unsubscribe` + `List-Unsubscribe-Post`) - Returns `bool` (true on success, false on any failure) - On failure, logs/alerts somewhere I can see (Telegram, Sentry, log file — match what the codebase already does) - Sets curl/fetch timeouts (5s connect, 15s total) so a stuck CF API can't hang the request - Treats `permanent_bounces: [...]` non-empty as a soft failure ### 5. Migrate one low-stakes email type first Don't migrate everything at once. Pick the lowest-stakes email type in the audit (something where landing in spam wouldn't lose me money or users — e.g. "internal admin alert", "profile photo rejection") and migrate just that one. Test it end-to-end. Confirm the email actually arrives. Only then propose the next migration. ### 6. Stop me from migrating login email yet If my codebase sends magic-link login or password-reset emails, do not migrate those to Cloudflare yet. Cloudflare Email Service is brand new (~1 month old at writing). Its IP/domain reputation is unproven. Login emails landing in spam = users locked out. Keep those on the current provider until at least 3 months of clean deliverability data on the lower-stakes types. Tell me this explicitly. ### 7. Suggest commit boundaries After each successful migration, suggest a focused git commit with a clear message. Don't bundle unrelated changes. ## Important caveats to surface to me - Beta product. Pricing isn't fully finalized. SLA undefined. Could change. - No batch endpoint. Mass sends (newsletters to 1000+ recipients) need a loop — at ~150ms/send that's ~2.5min per 1000. Fine for crons, bad for sync user-facing flows. - No bounce webhooks yet. Surface failures via the response body's `permanent_bounces` array. - Suppression list auto-managed. Hard bounces, repeated soft bounces, and spam complaints get blocked. Spam-complaint suppressions are hard to remove (anti-abuse). - No per-message logs/dashboard yet. Use the response's `messageId` for tracking if I need it. - List-Unsubscribe headers are passed through verbatim — Gmail's bulk-sender requirement still met, but only if I include them in `headers`. ## Your first action Before writing any code: do step 1 (ask for prerequisites) and step 3 (audit existing sends), then propose the migration order with a brief explanation of the reasoning. Wait for my confirmation before making changes.
Show more
0
52
1.2K
48
Forward to community
just got myself a brand new @Ledger I have 2 ledgers and 1 @Trezor and 1 @Tangem hardware wallet at the moment Trust me if there is anything worse than being sidelined, its losing all your chips If you have networth of $30k+, invest in crypto hardware wallets. I will be sharing my experience with ledger flex 🫡 not sponsored btw paid it myself
Show more
0
118
182
20
Forward to community