- Création d’un bot Telegram personnalisé
- Fonctionnalités de base (messages automatiques, commandes simples)
- Support technique 1 mois inclus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Simple extractor to find hardcoded strings in Android XML files and move them to res/values/strings.xml. | |
| - Scans app/src/main/res for layout/menu/xml/etc (skips values/) | |
| - Targets attributes: android:text, android:hint, android:contentDescription, android:title, android:label, android:summary | |
| - Skips values already referencing @, ? or data-binding @{...} | |
| - Adds entries to app/src/main/res/values/strings.xml and replaces literals with @string/<key> | |
| - Creates locale placeholder values-<lang>/strings.xml for existing locales or a default set | |
| Usage: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Download OpenSSL Library with 16kb Aligment | |
| Libraries meet Google Play requirements | |
| https://filebin.net/5lpnq2mhu25bznoz/openssl_16kb_alignment.zip | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Enhanced ELF Alignment Checker for Android 16KB Page Size Compatibility | |
| # This script checks if your app's native libraries are compatible with 16KB page size devices | |
| # as required by Google Play starting November 1st, 2025 for apps targeting Android 15+ | |
| progname="${0##*/}" | |
| progname="${progname%.sh}" | |
| # Color codes and formatting - detect if colors are supported |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @IBDesignable | |
| class UIBorderCustom: UIView { | |
| @IBInspectable var borderColor: UIColor? { | |
| didSet { | |
| borderLine.strokeColor = borderColor?.cgColor | |
| } | |
| } | |
| @IBInspectable var borderWidth: CGFloat = 2 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cat .env | sed 's/^/heroku config:set --app my-app-name /' | sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Vérifier si vim est installé, sinon l'installer | |
| if ! command -v vim &> /dev/null; then | |
| echo "Vim n'est pas installé. Installation..." | |
| sudo apt update | |
| sudo apt install -y vim | |
| else | |
| echo "Vim est déjà installé." | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Vérifier si VSCode est installé | |
| if ! command -v code &> /dev/null | |
| then | |
| echo "VSCode n'est pas installé ou 'code' n'est pas dans le PATH." | |
| echo "Veuillez installer VSCode et s'assurer que 'code' est accessible depuis le terminal." | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| echo "==> Étape 0 : Mise à jour actuelle de Ubuntu" | |
| sudo apt update && sudo apt upgrade -y && sudo apt dist-upgrade -y | |
| sudo apt autoremove --purge -y | |
| sudo apt install update-manager-core -y | |
| echo "==> Étape 1 : Passage de Ubuntu 18.04 vers 20.04" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Fix with this Command | |
| $ npm install -D tailwindcss@3 postcss autoprefixer | |
| $ npx tailwindcss init -p |
NewerOlder