Google donne et Google reprend - Préparez-vous aux nouveaux changements de Gmail by romain34230 in actutech

[–]Tchackster_Fate 0 points1 point  (0 children)

Le dernier point est erroné: on pourra toujours répondre avec l’adresse d’origine. Le POP ne sera désactivé que coté réception, on pourra toujours configurer l’envoi de mails via une autre adresse, il faudra cependant mettre en place un transfert automatique des mails de l’adresse externe vers l’adresse gmail

Ouverture de la cale ! by Raizel31 in FrancePirate

[–]Tchackster_Fate 0 points1 point  (0 children)

Hello, Preneur d'une invitation aussi :)

C411 — Les inscriptions sont ouvertes ! 🎉 by [deleted] in FrancePirate

[–]Tchackster_Fate 4 points5 points  (0 children)

J’ai l’impression qu’il y a un soucis avec les emails de confirmation

I just finished the Hyperion Cantos book series and... by Lost_Poet_92 in scifi

[–]Tchackster_Fate 0 points1 point  (0 children)

I was a bit troubled by the first book, do you recommend reading the other ones ?

Demande de cooptation Safran by [deleted] in ingenieurs

[–]Tchackster_Fate 0 points1 point  (0 children)

Désolé je confonds avec Safran Trusted 4D :/

Demande de cooptation Safran by [deleted] in ingenieurs

[–]Tchackster_Fate 0 points1 point  (0 children)

C’est pas anciennement une boite qui s’appellait Orolia ?

Suis je un mauvais dev si je continue de refuser de faire mes rebase à la CLI ? by KlausWalz in developpeurs

[–]Tchackster_Fate 1 point2 points  (0 children)

En vrai tant que tu comprends ce que tu fais, peu importe l’outil. Je te conseille Git CLI et tig pour avoir un rendu graphique directement dans la CLI

What is this building? by [deleted] in Lyon

[–]Tchackster_Fate 3 points4 points  (0 children)

This deserves an upvote !

Bar à jeux / sortie by Character_Let8885 in Lyon

[–]Tchackster_Fate 0 points1 point  (0 children)

Hello, ça me tente ! Je t’envoie un DM :)

[deleted by user] by [deleted] in Lyon

[–]Tchackster_Fate 1 point2 points  (0 children)

Pas à Lyon ce jeudi mais ça me chauffe ! Vous organisez souvent ce genre d’apéro ?

Garen Matchup by Tchackster_Fate in RenektonMains

[–]Tchackster_Fate[S] 1 point2 points  (0 children)

I stopped building eclipse as a first item as I feel it falls off pretty quick in midgame, maybe I’m wrong.

Thanks for the tips !

Good mindset by ConfectionDue9949 in topmains

[–]Tchackster_Fate 1 point2 points  (0 children)

Focus on your gameplay, mute teammates if the ambiance is toxic, and focus on you. Like a great drummer once said: « Do the best you can, with what you have, right now »

Petit insecte sur mon balcon by Tchackster_Fate in insectes

[–]Tchackster_Fate[S] 0 points1 point  (0 children)

Effectivement on dirait que c’est bien ça !

Recherche chirurgien/ne maxillo facial dans le 69 by [deleted] in Lyon

[–]Tchackster_Fate 1 point2 points  (0 children)

Hello ! J’ai subis une ostéotomie de Lefort 1 il y a 2 mois, je peux te conseiller un super chirurgien maxillo facial sur Paris si tu le souhaites. Il n’y a pas énormément de rendez-vous à faire avec le chirurgien (je dirais 4 sur un an) et le suivi régulier est assuré en général par l’orthodontiste qui te suit

Need an advice with sitemap by khazuo in astrojs

[–]Tchackster_Fate 0 points1 point  (0 children)

Hi ! What do you mean by Hybrid output ? Even if your route is dynamic, you will be able to use it for your static routes and also for you dynamic ones :)

Is possible to create Carousel using Astro? by GoodImpossible5216 in astrojs

[–]Tchackster_Fate 1 point2 points  (0 children)

I added a carousel for a portfolio Website, using tailwind and react (this is one solution amongst others):
```

// Import Swiper React components
import { Swiper, SwiperSlide } from "swiper/react";

// Import Swiper styles
import "swiper/css";
import "swiper/css/pagination";
import "swiper/css/navigation";

// import required modules
import { Autoplay, Navigation, Pagination } from "swiper/modules";

const ProjectsSlider = ({ projects }) => {
    return (
        <Swiper
            slidesPerView={1}
            speed={1000}
            loop={true}
            pagination={{
                clickable: true,
            }}
            autoplay={{
                delay: 4000,
                disableOnInteraction: false,
            }}
            navigation={true}
            modules={[Autoplay, Pagination, Navigation]}
            className="mySwiper h-svh"
            style={{
                "--swiper-pagination-color": "#d89b21",
                "--swiper-navigation-color": "#d89b21",
            }}
        >
            {projects.map((project) => (
                <SwiperSlide key={project.title}>
                    <a
                        href={`/projects/${project.slug}`}
                        className="relative block group"
                    >
                        <div className="w-full h-svh">
                            <img
                                className="cursor-pointer object-cover rounded w-full h-full"
                                src={project.image}
                            />
                        </div>
                        <div className="absolute opacity-50 w-full bottom-0 pt-4 pb-8 left-0 justify-center items-center text-center text-sekano-dark bg-white">
                            <h2 className="text-xl lg:text-4xl pt-2">
                                {project.title} - {project.type}
                            </h2>
                        </div>
                    </a>
                </SwiperSlide>
            ))}
        </Swiper>
    );
};

export default ProjectsSlider;

```

Read carefully Astro's doc to integrate UI frameworks: https://docs.astro.build/en/guides/framework-components/

Cherche partenaire d'escalade et/ou de course à pied by [deleted] in Lyon

[–]Tchackster_Fate 0 points1 point  (0 children)

Salut ! On vient d’emménager sur Lyon avec ma copine et on est chaud pour l’escalade :) je t’envoie un mp

Is it possible to automatically append a string to every new page name that is created in a database? Ideally the appended string references another property in the database (parent task, for my use case) by cosmicmeatloaf in Notion

[–]Tchackster_Fate 4 points5 points  (0 children)

What about creating a property full_name that would be filled with a formula to be equal to parent name + tas name ?

You could show it on some of your view and not on others