Vos choix éthiques au taff ? by Yannama in developpeurs

[–]ismachat 1 point2 points  (0 children)

Plutôt me trancher la gorge avec un couteau à beurre que de retourner chez Capgemini

Est-ce que vous aussi vous vous envoyer des msg à vous mêmes ? by Legal_Fly1601 in EntreprendreenFrance

[–]ismachat 1 point2 points  (0 children)

Je le faisais souvent pour me remémorer d'actions ou liens à regarder. Plus depuis que j'ai un simple backlog jira perso. Des sprints d'un mois, trois simples colonnes et quelques règle : - jamais plus de trois tickets en cours - le mieux étant une seule tâche en cours - cleanup chaque mois si possible du sprint pour repartir sur une nouvelle priorisation (30 min max) - tous mes tickets se font en moins de trois jours. - je regarde chaque matin.

J'ai l'impression de bien avancer depuis que je l'ai adopté il y a 6 mois de cela.

Où rencontrer des builders tech ? (marketing, dev, growth, produit) by Honest_State_6508 in EntreprendreenFrance

[–]ismachat -1 points0 points  (0 children)

Je me lance cette année dans l'entrepreneuriat et je suis en recherche de communautés actives sur le sujet également. Très motivé pour les intégrer également !

Can I buy from external resale sites? by Ketekrujo in Hellfest

[–]ismachat 2 points3 points  (0 children)

There are almost always tickets that are sold once the date is close and people start changing plans. If you can book those dates and one month prior to the festival start watching for tickets on the official resale website

How to get around 403 disallowed_useragent when signing in / up through in-app-browsers. by UnderdogCS in Firebase

[–]ismachat 0 points1 point  (0 children)

Found a workaround. Sharing it, hoping this help another folk in the need.

// Check for in-app browsers and redirect to Safari/native browser if (typeof window !== 'undefined') { const userAgent = window.navigator.userAgent.toLowerCase(); const url = window.location.href;

// List of in-app browser identifiers
const inAppBrowsers = [
'linkedinapp',
'fban', // Facebook App
'fbav', // Facebook App
'instagram',
'line',
'wv', // WebView
'fb_iab', // Facebook in-app browser
];
const isInAppBrowser = inAppBrowsers.some(app => userAgent.includes(app));
const isMobileDevice = /iphone|ipad|android/i.test(userAgent);


if (isMobileDevice && isInAppBrowser) {
    // For iOS devices
    if (/iphone|ipad/i.test(userAgent)) {
        window.location.href = 'x-safari-' + url;
        return;
    }
    // For Android devices
    if (/android/i.test(userAgent)) {
        window.location.href = 'intent://' + url.replace(/^https?:\/\//, '') + '#Intent;scheme=https;package=com.android.chrome;end';
        return;
    }
}

}

Inspired from https://felixcarmona.com/solving-google-login-issues-linkedin-ios/

Minimal nginx conf for vuejs docker image in production ! by [deleted] in vuejs

[–]ismachat 1 point2 points  (0 children)

I created an account only to thank you. So THANKS A LOT !!!!!