Show HN: I took over Painteresque, a 14 year old Objective-C app and rebuilt it
granted, this ain't completely new as a business model, espechally in regulated juristictions.
Don't ask me how I know...
The Best Free Antivirus Apps for Your Phone:
Discover the best free antivirus apps for your phone. Explore top options to save money while ensuring your devices security.
Skype gibts noch Das war so ungefhr mein erster Gedanke, als es nun hie, dass der Dienst eingestellt werden wrde. Im Mai ist es soweit. Offiziell liegt das Ganze wohl daran, weil die Anzahl der Nutzenden in den letzten Jahren gewaltig abgenommen hatte und sich der parallele Betrieb von Skype und Teams fr Microsoft wahrscheinlich nicht mehr rentiert. Es gibt zwar auch andere Theorien, aber ich denke, das wre dann zu weit hergeholt.
Seit seiner Einfhrung im Jahr 2013 ist ein Begleiter bei der Erkundung der Welt durch Googles -Panoramen. Seit ber einem Jahrzehnt knnen User mit nur einem einmaligen -Kauf weltweite 360-Grad--Bilder auf , , und der abrufen. Aufgrund der jngsten nderungen im von nimmt Streets jedoch eine wichtige Umstellung vor und stellt sein um.
Alle Infos:
Immer mehr gestohlene und/oder halb zerlegte Fahrrder sind in Fssem in Parks, auf Wiesen und an Strassenrndern zu sehen. Was ist los in Fssen Solche Missstnde lassen sich brigens bequem und unkompliziert per direkt an die Gemeinde melden.
Jai toujours t dpendant dun ordi pour travailler avec des logiciels de design.
Hier jai test Affinity Designer + iPad + stylet
Mon ordi a du souci se faire.
FitoTrack
Ein Fitness Tracker, der deine Privatsphre achtet. FitoTrack ist eine App zum Aufzeichnen und Auswerten deiner Workouts.
Ob du lufst, Fahrrad fhrst oder wanderst: FitoTrack zeigt die wichtigsten Daten mit detaillierten Diagrammen und Statistiken. Es ist Open-Source und komplett ohne Werbung.
Imagine someone having access to every message you send, every photo you take, and knowing exactly where you are at all times. This isn't science fiction - it's happening right now to thousands of people
WhatsApp: collega Instagram e decidi chi vede i tuoi link
- Google Play Store Aktion: Diese 54 Android-Apps, Spiele, Icon Packs & Live Wallpaper gibt es heute Gratis -
bersicht und Infos zur Pokmon GO Tour: Einall an diesem Wochenende
Die Pokmon GO Tour: Einall findet heute statt. Wir geben euch einen berblick ber die Inhalte!
Zur News:
Make your own Tour Appwas noch zu empfehlen ist aber "mehr Aufwand" bentigt ist ua zB als alternative Open-Source App-Distro und der Aurorastore fr die populren Apps wie zustzlich FFUpdater fr aktuelle so wie sichere Updates.
Ja ist nicht fr alle einfach simpel aber es ist ja nun Wochenende )
1)
2)
3)
This Note-Taking App Can Replace Four of the Most Popular Productivity Tools
Source: Lifehacker
. nude con , : fatto increscioso
Details zum Kraftvolles Knnen-Event mit Dakuma und Knarbon in Pokmon GO verffentlicht
Dakuma und Schillernde Knarbon feiern ihr Debt mit diesem Event.
Zur News:
Shielded Email: la funzione Google inizia a prendere forma
Infos zur kommenden Saison der Pokmon GO-Kampfliga verffentlicht
Die kommende Saison der GO-Kampfliga bringt einige Attacken-nderungen mit sich.
Zur News:
YouTube Music cambia: trova gli album perfetti per te
Microsoft closes in May
If you were (still) a user you know that since their take over they did everything to frustrate users. Though it was the only where you could share en in a logic way.
Xiaomi: nuova app fotocamera per molti modelli (HyperOS)
Gboard si rinnova: l'icona delle scorciatoie perde il cerchio
This Week in Self-Hosted (28 February 2025)
, software updates and launches, a spotlight on -- custom feeds for popular social aggregation sites, and more in this week's recap!
ManyTag Colour eInk Badge SDK - Minimum Viable Example for Android
Last year, I reviewed a - the ManyTag HSN371. The hardware itself is perfectly fine, but the Android app isn't great. It is complicated, crash-prone, and not available in the app-store.
After some back-and-forth with the manufacturer, they agreed to send me their Android SDK and documentation. Sadly, the PDF they sent me was riddled with errors and the software library is also a bit dodgy. So, with the help of and a hefty amount of automated boiler-plate, I managed to get it working.
The , but here's a quick walk-through of the important bits.
First, the AAR library needs to be imported into the project. Place it in app/libs
and then include it in the Gradle build file:
dependencies implementation(files("libs/badgenfcapi-release.aar"))
The key to getting it working is in the Android permissions. It needs Bluetooth, NFC, and location. So the manifest has to contain:
<uses-permission android:name="android.permission.BLUETOOTH"/><uses-permission android:name="android.permission.BLUETOOTHADMIN"/><uses-permission android:name="android.permission.BLUETOOTHSCAN"/><uses-permission android:name="android.permission.BLUETOOTHCONNECT"/><uses-permission android:name="android.permission.NFC"/><uses-permission android:name="android.permission.NFCTRANSACTIONEVENT"/><uses-permission android:name="android.permission.ACCESSCOARSELOCATION"/><uses-permission android:name="android.permission.ACCESSFINELOCATION"/>
The following imports are needed from the Android Archive library:
import cn.manytag.badgenfcapi.manager.BadgeWriteManagerimport cn.manytag.badgenfcapi.manager.OnNFCReaderCallbackimport cn.manytag.badgenfcapi.manager.OnBluetoothCallBackimport cn.manytag.badgenfcapi.manager.OnSendImageCallback
The library needs to be initialised with:
val state = BadgeWriteManager.getInstance().init(this)
When the phone reads the NFC tag, it gets a bunch of information:
BadgeWriteManager.getInstance().setOnNFCReaderCallback(object : OnNFCReaderCallback override fun onReaderMessage(i: Int, tag: Tag) if (i == 0) BadgeWriteManager.getInstance().readNFC(tag) // Get the data from the badge override fun onReaderType(tag: Tag, isodep: IsoDep, i: Int, type: String, size: String, color: String) if (i == 0) nfcData = """ NFC Tag Detected!!! Tag: $tag IsoDep: $isodep Type: $type Size: $size Color: $color """.trimIndent() colorFromNFC = color tagObject = tag isoDepObject = isodep badgeType = type badgeSize = size )
The color
is most important right now. It says whether the badge is black and white, or black and white and red, or black and white and red and yellow.
After picking an image from the filesystem, it needs to be dithered into the correct colour format:
processedBitmap = originalBitmap.let bitmap -> colorFromNFC.let color -> BadgeWriteManager.getInstance().processImage(bitmap, color)
Finally, the processed image needs to be converted to bytes and then sent to the badge via Bluetooth:
if (processedBitmap != null && badgeType != null && badgeSize != null && colorFromNFC != null) val imgData = BadgeWriteManager.getInstance().getImageData(processedBitmap!!, colorFromNFC!!) BadgeWriteManager.getInstance().sentImageResource( tagObject!!, isoDepObject!!, imgData, badgeType!!, badgeSize!!, colorFromNFC!! )
I realise this is a bit "" but that should be enough to get you started on building an app which can communicate with these badges.
The app I've built isn't the prettiest in the world but at least it works. It scans a badge, gets its info, picks an image, dithers it, then sends it to the badge.
You can .
#android #app #eink #HowTo #Kotlin
blog! ManyTag Colour eInk Badge SDK - Minimum Viable Example for Android
Last year, I reviewed a Four-Colour eInk Name Badge - the ManyTag HSN371. The hardware itself is perfectly fine, but the Android app isn't great. It is complicated, crash-prone, and not available in the app-store.
After some back-and-forth with the
Read more:
Skype verso la chiusura, Microsoft punta tutto su Teams
Microsoft rilascia un'app Copilot per Mac, ma non in Italia
Wisst ihr, was On-Demand-Verkehr ist Flexible Fahrzeuge, die per gebucht werden und dort helfen, wo und weniger gebraucht werden. So wird der Individualverkehr reduziert und umweltfreundlichere gefrdert!
Mehr:
Auch das ist ein On-Demand-Verkehr! Flexibel auf Abruf verfgbar, ergnzt es den in BW und schliet Lcken im Linienverkehr. Ideal fr spte Fahrten oder abgelegene Orte!
Mehr dazu:
idmnb
FDMFree Download Manager
Motrix aria2
pdmaria2
Photon aria2
gopeed
Built with Golang and Flutter.
5
Interstellar v0.8.0 update: Profile & Filter List sharing, overhauled post creation screen, Mbin magazine/user/post notification controls, post/comment bookmarking, Linux ARM and Windows support, too much to fit here...
Interstellar v0.8.0 update: Profile & Filter List sharing,... #mbin #lemmy #app #fediverse #activiypub #aggregator #kbinAccessing region-locked features, such as stores
Sorry, you cant have . But heres a new that lets you your kidneys for
Neuer Newsletter zu Pokmon Masters EX enthllt kommende Inhalte fr den Mrz 2025
Ein berblick ber die kommenden Events und Inhalte wurde verffentlicht.
Zur News:
An issue with our iOS beta that displayed, "This beta is not accepting any new testers right now" is now resolved with Beta 51.
Trufis open approach gave Salim the tools to create an app that transformed his career. The Corsa app and the Trufi community provided a catalyst for Salim's initiative.
Instagram May Launch Reels as a Standalone App
Is the RedNote app a security risk
How safe is RedNote A new report from University of Torontos Citizens Lab says Android and iOS versions of RedNote 'fetch viewed' images and videos without any encryption, which enables network eavesdroppers to learn exactly what content users are browsing.
Ein digitaler Begleiter mit praktischen Informationen zu #Gottesdiensten und Pfarreiangeboten Das Bistum #Wrzburg zieht sich etwas aus #SocialMedia zurck und will mit einer neuen #App eine Brcke zwischen traditioneller #Glaubensvermittlung und #Medienwelt schlagen:
()
TikTok () security company TikTok alternative RedNote (Xiaohongshu) fails basic security measures