RSSAmplifier

Blog

Cordobo

on Software Development

cordobo.comRSS feed ↗6 posts

Latest posts

Ausmalbild kostenlos – einfache kostenlose Ausmalbilder für Kinder zum Ausdrucken

Heute in eigener Sache - weil wir selbst immer wieder nach schönen und kindgerechten Ausmalbildern gesucht haben, haben wir zusammen mit unserem 5-jährigen Sohn Ausmalbildkostenlos.de erstellt. Dort veröffentlichen wir kostenlose Malvorlagen als PDF zum Ausdrucken, die wir selbst machen. Klar sortiert und ohne Motive, bei denen man als Eltern zweimal hinschauen muss. Da regelmäßig neue Bilder…

TIL: update all shadcn ui components

Update all shadcn components to the latest version npx shadcn@latest add -a -y -o Source: shadcn-ui Github discussion

TIL: Upgrade python and venv with uv

uv venv python 3.13 uv python upgrade 3.13 Source: UV Python Versions This is a TIL (Today I learned).

Quick Tip: Fix Cordova Access-Control-Allow-Origin error

A real lifesaver for cordova and ionic developers when you encounter CORS errors in the browser preview Goto yourapp/platforms/browser/cordova/node_modules/cordova-serve/src/browser.js and change the chromeArgs line, adding the disable-web-security flag: function getBrowser(target, dataDir) { dataDir = dataDir 'temp_chrome_user_data_dir_for_cordova'; var chromeArgs = ' --user-data-dir=/tmp/' +…

Angular QR Code Generator Component

Update: Latest update supports Angular 22 and standalone components. How to: angularx qrcode with standalone components. Say hello to my new Angular QR Code module, called angularx-qrcode. It s not only a drop-in replacement for the no-longer-maintained ng2-qrcode component to generate and display QR Codes, it s as well heavily optimized for Angular and Ionic. angularx-qrcode supports [ ]

Quick Tip: Could not find gradle wrapper within Android SDK. Might need to update your Android SDK.

If you try to build your ionic/cordova project running with cordova build --release android and the shell returns the following error Could not find gradle wrapper within Android SDK. Might need to update your Android SDK. the following worked for me: cordova platform remove android cordova platform add android cordova platform update android@6.2.1 cordova build [ ]