Nicolas BAPTISTA - Page 2 of 6 - Blog of a Parisian software architect

This blog contains 62 articles

N I C O L A S    B A P T I S T A

PERSONNAL BLOG

SOFTWARE ARCHITECT • JAVASCRIPT DEVELOPER • DESIGNER


LinkedIn Contact Github Remote OK Resume My Projects

Payer les charges en prestation de service en auto-entrepreneur / micro-entreprise / indépendant

En tant qu’auto-entrepreneur ou chef d’entreprise d’une société unipersonnel (SASU ou EURL), nous nous devons malheureusement de payer d’une part les charges sociales auprès de l’URSSAF mais aussi les impôts (taxe CFE par exemple) et la TVA si vous avez dépassé le seuil de TVA, ainsi que d’autres charges annexes. Dans cet article je liste les principales charges de l’auto entrepreneur en prestation de service.

Principales charges et impôts d’un auto-entrepreneur / indépendant, en prestation de service (développeur, data analyst, UI/UX designer, testeur QA, marketing, chef de projet, etc.) :
– Assurance RC Pro (responsabilité civile obligatoire, ne prenez pas de risques)
– Banque Pro (il y a des banques pro gratuites mais généralement on vous propose d’être accompagné et d’avoir une carte bancaire professionnelle, toutes les banques physiques proposent : BNP, Caisse d’Epargne, Société Générale, HSBC, etc. mais vous pouvez vous dirigez vers des solutions plus utilisés et moins cher comme les banques en ligne : Shine, Hello Bank, Qonto, …). Pour information avoir une banque professionnelle n’est pas obligatoire mais avoir un compte séparé oui.
– Charges de l’URSSAF (22% du chiffre d’affaire en prestation de service < 75k€), à déclarer sur autoentrepreneur.urssaf.fr
– Les taxes et impôts professionnels (comme la taxe CFE, sur la partie PRO des impôts)
– La TVA, qu’il faudra facturer 20% au client et la reverser aux trésors publics suivant le régime TVA que vous avez choisi (CA12, CA3, …) si vous avez dépassé le seuil de dépassement de TVA (CA d’environ 36 000€, vérifiez sur le site des impôts)

– Les taxes et impôts particulier (sur la partie particulier des impôts
– Vous devez payer vous même absolument tout : restaurant, transports, mutuelle, … vous n’avez pas de CE, de mutuelle entreprise, de ticket restaurant, … Ce n’est pas une partie à négliger.

J’espère avoir été clair et avoir résumé la plupart des charges pour un indépendant exerçant son activité sur le territoire français en tant qu’un dépendant français, n’hésitez pas à me contacter si vous avez des questions.

Rename git branch

Use git command line (with git bash on Windows) to change the branch name.

1 – Be sure you are on the right branch

Firstly, you should be on your current branch (the branch you want to rename) with git checkout.

2 – Change the name of the branch locally

Secondly, you should rename the branch with the following command:

git branch -m <the_new_branch_name>

The new branch name should be valid, with no space. If you use special characters you should use quotes like:

git branch -m “let’s-put-a-complicated-name”

3 – Change the name of the branch remotely

You can now change the name of the branch remotely so it’s also changed on github / gitlab / bitbucket etc.
To do push it use:

git push origin HEAD:<old_branch_name>

If it’s a complicated name you can still use the quotes:
git push origin HEAD:”it’s-an-old-branch-name”

Résoudre “Désolé… Nous rencontrons des problèmes de serveur temporaires.” sur Word et Office 365

Si vous utilisez Word sur Windows 7 il est possible que vous n’arrivez tout simplement pas à vous connecter sur votre compte Office 365 et donc que vous ne pouvez pas utiliser des outils comme Word et Excel qui nécessite une license.

La connexion au compte génère l’erreur “Désolé… Nous rencontrons des problèmes de serveur temporaires.” ou une page blanche

Installer Internet Explorer 11 / Install Internet Explorer 11

Vous devez mettre à jour Internet Explorer, même si cela parait bête, c’est bel et bien ce qu’il faut faire:

Lien: https://www.microsoft.com/fr-fr/download/details.aspx?id=41628

Redémarrer l’ordinateur / Restart the computer

Une fois Internet Explorer mis à jour vous devez redémarrer Windows

Mettre à jour Word ou Office 365 / Update Word or Office 365

Une fois redémarré, si vous ne pouvez pas vous connecter, il faut mettre à jour Word / Office 365 :

The good way to create the SAAS application project

The bad way

FIND AN IDEA, A BUSINESS MODEL
BUILD THE PRODUCT FROM THAT IDEA
TRY TO SELL THE PRODUCT
It will be hard to find people interested to the product

The good way

FIND AN AUDIENCE
ANALYSE THEIR PROBLEMS
FIND A SOLUTION TO THEIR PROBLEMS WITH A PRODUCT
SELL THE PRODUCT TO THE AUDIENCE
It is more easy because you already know interested people

After doing it in the good way, what will matter is the execution of making this product real.

The most you push your idea of business forward with effort making it real, the most it will works.

An idea without any action is nothing worth.

AWS Certificate Manager – The SCAM service of AWS

If you are using the services of AWS you should be careful about some services. It is possible that you may want a certificate for your application. You may use free certificate like let’s encrypt but AWS is offering a “Certificate Manager” and you can find it like any other services:

400$/month per private certificate

But, on the pricing page, you can find that this service cost 400$/month, no matter if you use it or not, it will take you the price of renting a car.

No way to delete or stop this recurring amount of money from the account

On the documentation, you can find that the service will stop “until you delete the CA”. I can tell you that this information is not really true as this service still take money without the CA. So additionally this service have a very not predictable way of taking money, and you don’t really know when it will stop, even if you check there is no certificate and you read carefully the documentation.

Conclusion

How to remove git token on git project after a failed git pull

After doing a git pull is it possible you have an error because your Git Token is not valid anymore, here is an exemple:

# git pull
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'https://gitlab-ci-token:YOURTOKEN@gitlab.com/YOURPROJECT.git/'

In order to do the git pull we want to use our credential with the LOGIN / PASSWORD that we use to access GitLab.

Solution 1 : Git pull one time with login (temporary)

# git pull https://gitlab.com/YOURPROJECT.git

Solution 2 : Change the origin URL to HTTPS (permanent)

# git remote set-url origin https://gitlab.com/YOURPROJECT.git
# git pull

It will ask your login and password for the git pull and will not use the git token anymore.

Kill Node.JS service by port / Arrêter un service Node.JS avec son port

🇬🇧Dear all, is it possible you want to kill a Node.JS service with your linux machine, that is running on a specific port

Il est possible que vous voulez arrêter un processus Node.JS sur un port précis sur votre machine linux🇫🇷

Here is the magic command to find and kill the Node.JS process

Voici la commande magique qui permet de trouver et arrêter de processus avec son port

netstat -pluton
It looks like the name of the famous planet / Moyen mémo-technique on pense à cette p’tite planete

Then you should be able to find the process (PID) with the port associated

Vous devriez avec cette commande trouver le nom du processus (PID) avec le port associé

PORT 4000:

React native with Android – Fix : Device unauthorized

Check developer is enabled in the phone settings

One reason your phone is not detected is that you don’t have enabled the developer mode in the Android Settings.

Check the connected android devices with adb devices

Now you can check if your phone is connected with adb devices

sh-3.2# adb devices
* daemon not running; starting now at tcp:5037
* daemon started successfully
List of devices attached
CBAA004484J41536762     unauthorized

Authorise your device with adb kill-server and adb devices

If your phone still not asking anything while connected, you can force the adb service to restart like that:

sh-3.2# adb kill-server
sh-3.2# adb devices
* daemon not running; starting now at tcp:5037
* daemon started successfully

Then now you should be able to see a message on your phone asking if you authorise the computer.
Now you should be able to do your react-native run-android or yarn android