techhub.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A hub primarily for passionate technologists, but everyone is welcome

Administered by:

Server stats:

4.6K
active users

#SDK

4 posts4 participants0 posts today

#ClaudeCode #SDK for #PHP - Streamlined AI coding assistance integration 🚀

🔌 Stream #Claude responses, track token usage & hook into events for seamless #AI integration
🛠️ Easy installation via #Composer with built-in #Laravel support & facades
⚙️ Configure system prompts, allowed tools & permission modes with strongly-typed options
📊 Monitor performance with interceptors for logging, metrics & real-time progress tracking

🧵 👇

Share Android Apps on Twitter (or anywhere else)

shkspr.mobi/blog/2010/07/share

I attended the Mobile Monday meeting "200,000 Apps - Where's Mine" last night.One thing that became clear is that apps don't do a very good job of promoting themselves. One crippling problems with most app stores is that there's no (easy) way to share an app with a friend.

Here's some basic code for an Android app which will post the URL of your app to Twitter. Stick it in a button or menu item for easy sharing.

String twitterUri = "http://m.twitter.com/?status=";String marketUri = Uri.encode("http://example.com/?q=app&title=test");Intent shareOnTwitterIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(twitterUri + marketUri));startActivity(shareOnTwitterIntent);

Some important things to note.

  1. This is set to post to the mobile version of Twitter.  Your user is on a phone - don't direct them to a site that won't work on their device.
  2. The second string is URI encoded.
  3. Consider if you want to post a "market://" link.  I would advise against it.  Twitter won't render it as a link and, even if it did, 90% of users won't be able to click on it.  Make it a link that will direct desktop users to your website, mobile users to a mobile friendly site and Android users direct to the market.

Facebook also has an API for this sort of sharing.

http://m.facebook.com/sharer.php?u=example.com&t=test

Again, it points to the mobile site and needs to be URL encoded.

Happy sharing!

The Twitter logo.
Terence Eden’s Blog · Share Android Apps on Twitter (or anywhere else)
More from Terence Eden
#android#api#mobile

Proton’s summer 2025 roadmap covers upcoming updates for Mail, Calendar, Pass, and Drive. 🔐

Notably, they confirmed work on a Linux Proton Drive app, supported by a soon-to-be-published SDK—boosting native Linux support. 🐧

@protonprivacy

proton.me/blog/drive-roadmap-s

Proton · Proton Drive roadmap for summer | ProtonCheck out Proton Drive’s summer roadmap for 2025, including Docs and Photos performance upgrades, and new ways to collaborate privately.