Posts

Showing posts with the label application

[SocialCut] ultimate android app to cut all your media image sizes

Image
  SocialCut v.1.2.0 has been released! (Latest version of SocialCut) SocialCut provides up to date social media image sizes for all your social networks. That means that you will be abble to cut / crop / resize your pictures before to publish it to your favorite social networks like Facebook, Instagram, Google, TumblR, x.com, Weibo and many others ! In this version you can unlock ALL cut templates by buying "unlock all" in app purchase: 💰👇🏻 The price is actually down so take your chance! If you want more information about social network image sizes in 2024, you can have a look to these really interesting articles:  -  skedsocial.com/blog/the-ultimate-up-to-date-social-media-image-sizes-guide -  https://blog.hootsuite.com/social-media-image-sizes-guide/ -  https://makeawebsitehub.com/social-media-image-sizes-cheat-sheet/ ➡️SocialCut can cut your images for you! Follow us on instagram (more than 900 followers now):   @socialcut.app More information: Official website

[eBook] Understanding mobile application development for everybody

Image
Problematic Mobile applications are used by many people these days. Many craftsmen, freelancers and others people have at the point, the idea to make their own mobile application to support their business. In general it's a really good idea to do so. Providing a quality application to your customer is always a PLUS and sometimes a MUST.  The problem is that sometimes, we don't know what creating an application implies and we don't know how to start... ➡️ This often leads to time and money loss 🤯 Guide to design your mobile app [ free eBook ] Below, you will find a link to download a presentation that I wrote about how to design your mobile app.  This is a short document that will help you to understand all the steps needed in order to publish a stable and a quality application .  We also cover the 'delays' problematic as many people think that a mobile app is fast to develop, so they underestimate deadlines... You will also find a few tips about Play Store and the

[SocialCut] released! Make instagram grids, panorama and more

Image
  [SocialCut] Released on Google Play Store ! Hello guys, today, just an announcement to inform you that SocialCut has been released and is now available for everybody ! 📱 Download SocialCut On Google Play Store 🧑🏻‍🎨 SocialCut is the ideal tool for: digital content creator community manager, digital artist influencer digital media manager , freelance developer, or simply a daily picture user 💡 And remember that SocialCut is available in the following languages: - English, Spanish, French, Chinese (simplified), Japanese  

[SocialCut] The perfect app for digital content creators

Image
  [SocialCut] The perfect app for digital content creators If you have to deal with digital pictures and social networks, you may have noticed that there are so many simple tools like applications to generate grids for Instagram. We can note apps like: PhotoSplit : https://play.google.com/store/apps/details?id=co.techpositive.photosplit&hl=en_US Griddy : https://apps.apple.com/us/app/griddy-split-grid-post-maker/id1114106704?uo=4 PanoraSplit for instagram : https://apps.apple.com/us/app/panorasplit-for-instagram/id1463280209 and much more... SocialCut is a new Android application that extends this principle. With SocialCut you will be able to cut/crop/resize pictures in order to publish it to your favorite social networks . Google Play Store - SocialCut SocialCut for Android If you are: digital content creator community manager, digital artist influencer digital media manager , freelance developer, or simply a daily picture user SocialCut is made for you! You will be able to cre

[XAMARIN FORMS] Background task for 'closed' applications

Image
Background task for 'closed' applications Handling a background task in Xamarin Forms, even when the application is closed, can be challenging due to the mobile operating systems' restrictions on background activities. Here's a detailed solution using a combination of Dependency Service , Background Services , and Platform-Specific Implementations . Step 1: Create an Interface First, create an interface in your shared Xamarin Forms project that defines the method for starting the background task. public interface IBackgroundTask { void StartBackgroundTask(); } Step 2: Implement Platform-Specific Services Android Implementation: In your Android project, create a service that implements the IBackgroundTask interface. Create a Service: [Service] public class MyBackgroundService : Service { public override IBinder OnBind(Intent intent) => null; public override StartCommandResult OnStartCommand(Intent intent, StartCommandFlags flags, int startId

[SocialCut] for Android, really nice picture application!

Image
[SocialCut] for Android, really nice picture application! Hello programmers, Just a few words to present you a new application that will be released soon. And you can get it for free if you pre-register on the Play Store! SocialCut Android app lets you crop your pictures in a few clicks to fit & publish it to your favorite social network! A lot of cut templates are already available, you just have to choose one then adjust the picture position => cut it as you see it. You can check SocialCut's Instagram account to see a few examples of cut pictures ( @ig: socialcut.app ). ___ 🚨 SocialCut is still in 'pre-registration' stage! Register to get the fully functionnal app for free 💲 when it will be released (*soon)!🚨 Get it on the Play store: https://play.google.com/store/apps/details?id=com.djooleean.socialcut Or official website: https://socialcut.app Let me your comments, and enjoy! Best regards, SocialCut on Youtube

[Flutter Tips] Remove the "DEBUG" banner of your Flutter app

Image
  [Flutter Tips] Remove the "DEBUG" banner of your Flutter app When you start coding a new application with Flutter, you  will surely see a banner with "Debug" text displayed on the top right corner of your app. To remove it, you will need to set the debugShowCheckedModeBanner property of the MaterialApp (or CupertinoApp ) widget to false . 🟢Here’s an example on how to do it: import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', debugShowCheckedModeBanner : false, // This removes the debug banner home: Scaffold( appBar: AppBar( title: Text('No Debug Banner'), ), body: Center( child: Text('Hello, World!'), ), ), ); } } > debugShowCheckedModeBanner: false : This line ensures that the debug ban

Wallpapers for your mobile

Image
Mobile applications need wallpapers My mobile applications Actually, I'm developing some Flutter mobile applications. If you have already designed mobile apps, you must know that at some point, you will need picture assets and more specifically, background images. All that in order to give your application a specific feeling... Original wallpapers In my daily mission of creating applications, I take regularly some time to design wallpapers. Now, with AI tools (and a lot of imagination), you can design original content. So I propose to you to discover some of my creations. For instance I tried to design specific atmosphere inspired by Rick & Morty universe. I give you access to a pack of wallpapers, that you can download for free if you have subscribed to my "buymeACoffee.com" account. ✅Download: Original Wallpaper pack (on BuyMeACoffee.com) 👀You can have a preview of all wallpapers on Youtube: Wallpapers pack presentation (Youtube) Tell me what you think, and if you

[Flutter tip] Package to simulate different devices to run your app

Image
  If sometimes you get crazy trying to test your Flutter application on different devices, like on an iPhone or any other Android devices, I have a pretty simple and convenient way to figure it out ! Use the following package, there are many options that will make you gain a lot of time! Like choosing between all different kind of devices, setting dark or light theme dynamically and much more.You should give a try to the following package:  Package on pub.dev : device_preview https://pub.dev/packages/device_preview Enjoy!

[Flutter tip] How to ignore lowerCamelCase warnings for your whole project

Image
If you like me, are coding generally in C# or other Camel case based programming language and start to  code in Flutter / Dart, you will always see a warning like this:   The variable name 'xxxx' isn't a lowerCamelCase identifier. Try changing the name to follow the lowerCamelCase style. To solve that, you can add a specific comment at the begining of each file where you have this issue. But maybe the most interesting thing for you is to do it only once in your whole project. For that, you have to edit the following file: analysis_options.yaml Add the following statements:  non_constant_identifier_names: ignore # This file configures the analyzer, which statically analyzes Dart code to # check for errors, warnings, and lints. include: package:flutter_lints/flutter.yaml linter: rules: # avoid_print: false # Uncomment to disable the `avoid_print` rule # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule # Disable the non_const

[Pixyway viewer] Version 0.9.5.0, edit your pictures on the fly

Image
  Hello Pixyway user, a new version of Pixyway has been released: 0.9.5.0. It includes new features, minor bug fixes and some UI updates. Here is a summary of the latest updates than you can find in this version: New editing picture panel (to edit picture's brightness, contrast, saturation and gamma components). You can access it from the top action bar or from the contextual menu. Clean any picture's EXIF data (picture's metadata). This allows you to keep your privacy when you publish your pictures on the web. Resize picture option added: select between 4 resizing algorithms (different rendering behaviors, like pixelated pictures style) The picture's information panel (containing EXIF metadata) has been updated, with actions accessible on the top of the panel + Keyboard SHORTCUTS: [CTRL+I] = Display picture information's panel, [CTRL+L] = Like/Unlike picture, [CTRL+P] = Pin/Unpin the bottom thumbnails bar [CTRL+R] = Dispay RESIZE picture dialog UI minor fixes ❔Ho

Android Ad-Hoc app publication guide (with Xamarin Studio)

Image
Warning before to start Before to install a custom APK app on your device, make sure it comes from a secured and trusted source ! Generate your APK using Xamarin Studio In order to have a valid package file (APK file), we have to generate a valid package signed with a security certificate. You can use a temporary certificate for test purpose. The process bellow shows you how to do that using Xamarin Studio Wizard: Generate your APK Select Archive for publishing menu Then select "Ad-Hoc" option (to generate your APK localy) Click on "Sign and distribute" Create a custom signing certificate Create a temporary certificate to sign your APK file Install the APK on the target device Configure the target device In order to accept and install a "custom" APK (application coming from other sources than the Play Store), you will need to unlock your phone. This is done in the phone's parameters