Seenthis
•
 
Identifiants personnels
  • [mot de passe oublié ?]

 
  • #f
  • #fu
  • #ful
RSS: #full

#full

  • #fuller
  • #fullhd
  • #fulldoc
  • #fulldisclosure
  • #full_
  • #fullness_of_time
  • #fulltext
  • #fullstack-engineer-myth
  • #fullscreen_api
  • #fullwidth
  • #full-bleed
  • #full-stack-engineer
  • #full-stack-developer
  • #full-stack-development
  • #full-stack-programmer
  • #full-text_search
  • #fullbright
0 | 25 | 50 | 75
  • @b_b
    b_b @b_b PUBLIC DOMAIN 2/12/2024
    1
    @spip
    1

    #Full-bleed layout with modern #CSS

    Use modern CSS and a few lines of code to create a full-bleed layout.
    Full-bleed? It’s when an element needs to bleed outside the main container and extend to the edge of the page.

    html {
     container-type: inline-size;
    }
    main {
     --w: 600px; /* the max-width */
     --m: 1em;   /* margin on small screen */
     
     margin-inline: max(   var(--m),(100cqw - var(--w))/2);
    }
    .full-bleed {
     margin-inline: min(-1*var(--m),(var(--w) - 100cqw)/2);
    }

    #pleine_largeur

    b_b @b_b PUBLIC DOMAIN
    • @arno
      ARNO* @arno ART LIBRE 2/12/2024

      Gaffe : c’est avec des unités de container (92% d’adoption pour l’instant).

      Est-ce que ça apporte quelque chose de plus que ce qu’on avait déjà avec :

      .spip_documents.max {
              margin-left: calc(-50vw + 50%) !important;
              margin-right: calc(-50vw + 50%) !important;
      }

      Sinon, sauf erreur, la division par deux suggère encore que c’est prévu pour fonctionner uniquement si la colonne de texte est elle-même centrée horizontalement dans l’écran (même marge à gauche et à droite), c’est généralement la limite de cette méthode (si la colonne de texte n’est pas au centre, on peut y arriver, mais faut faire des maths).

      ARNO* @arno ART LIBRE
    Écrire un commentaire
  • @touti
    vide @touti 18/01/2024
    3
    @b_b
    @fil
    @cy_altern
    3

    The Complex But Awesome CSS border-image Property
    ▻https://www.smashingmagazine.com/2024/01/css-border-image-property

    #css #border-image

    Did you know border-image property was such a powerful — and flexible — CSS property? Despite the challenge it takes to understand the syntax, there are ways to keep the code clean and simple. Plus, there is often more than one “right” way to get the same result. It’s a complicated and robust CSS feature.

    via la-grange.net

    vide @touti
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 18/01/2024

      plein de trucs sympa, merci !

      #intégration #web

      RastaPopoulos @rastapopoulos CC BY-NC
    • @b_b
      b_b @b_b PUBLIC DOMAIN 2/02/2024

      Very complex indeed ^^

      https://files.smashing.media/articles/css-border-image-property/1-illustration-slice-width-outset-values.png

      Mais des trucs bien sympas cf :

      Our first experiment is to add a gradient overlay above an existing background. This is a fairly common pattern to improve the legibility of text by increasing the contrast between the text color and the background color.

      .overlay {
       border-image: fill 0 linear-gradient(#0003,#000);
      }

      Our next example is a common design pattern where we want the background of an element to extend to the screen’s full width. We often refer to this as a “break-out” background because the element typically needs to break outside the constrained width of its parent container in order to stretch across the full screen.

      .full-background {
       border-image: conic-gradient(pink 0 0) fill 0//0 100vw;
      }

      Pour référence, c’est la personne qui partage ses tips sur ►https://seenthis.net/messages/1001462

      #css #background #overlay #fullwidth

      b_b @b_b PUBLIC DOMAIN
    • @cy_altern
      cy_altern @cy_altern CC BY-SA 21/03/2024

      #opacite_sur_image

      cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 3/10/2023
    3
    @rastapopoulos
    @spip
    @baroug
    3

    CSS { In Real Life } | Breaking Out of a Central Wrapper
    ▻https://css-irl.info/breaking-out-of-a-central-wrapper
    ▻https://css-irl.info/breaking-out-of-a-central-wrapper-05.webp

    Using viewport units, we can force an element to break out of the wrapper, without changing our original markup!

    .full-width {
     width: 100vw;
     margin-left: 50%;
     transform: translate3d(-50%, 0, 0);
    }

    ▻https://caniuse.com/viewport-units => 96.73%
    ▻https://caniuse.com/?search=translate3d => 96.15%

    #css #fullwidth #wrapper

    b_b @b_b PUBLIC DOMAIN
    • @arno
      ARNO* @arno ART LIBRE 4/10/2023

      On avait déjà référencé une notation équivalente (mais celle ci-dessus est sans doute plus facile à comprendre) :

      margin-left: calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);

      Par contre ça ne fonctionne que si la colonne de texte dans laquelle on se trouve est elle-même centrée dans la page.

      Dans mon plugin Maquettes multiples, j’utilise différentes valeurs pour .spip_documents.max selon qu’on est dans une colonne centrée ou décentrée. Ça peut devenir assez sioux.

      ARNO* @arno ART LIBRE
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 27/09/2023
    8
    @arno
    @rastapopoulos
    @spip
    @monolecte
    @7h36
    @biggrizzly
    @jluc1
    @ze_dach
    8

    loupe-php/loupe: A #fulltext #search engine with #tokenization, #stemming, #typo_tolerance, #filters and #geo support based on only #PHP and #SQLite.
    ▻https://github.com/loupe-php/loupe

    An SQLite based, PHP-only fulltext search engine.

    Loupe…
    –…only requires PHP and SQLite, you don’t need anything else - no containers, no nothing
    –…is typo-tolerant (based on the State Set Index Algorithm and Levenshtein)
    –…supports phrase search using " quotation marks
    –…supports filtering (and ordering) on any attribute with any SQL-inspired filter statement
    –…supports filtering (and ordering) on Geo distance
    –…orders relevance based on a typical TF-IDF Cosine similarity algorithm
    …auto-detects languages
    –…supports stemming
    –…is very easy to use
    –…is all-in-all just the easiest way to replace your good old SQL LIKE %...% queries with a way better search experience but without all the hassle of an additional service to manage. SQLite is everywhere and all it needs is your filesystem.

    b_b @b_b PUBLIC DOMAIN
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 27/09/2023

      Si le plugin Indexer de SPIP pouvait vraiment être agnostiquement multi-services d’indexation (à continuer d’améliorer, peut-être on peut vraiment)… ça serait un très bon candidat à l’ajout (avec le méga connu elastic search).

      Attention que pour celui là faut pas avoir trop de docs non plus, mais pour petits et moyens sites (ils disent vers 50000 max) c’est un super truc facile à mettre en place.

      RastaPopoulos @rastapopoulos CC BY-NC
    • @b_b
      b_b @b_b PUBLIC DOMAIN 28/09/2023
      @rastapopoulos

      @rastapopoulos gogogo !

      b_b @b_b PUBLIC DOMAIN
    • @b_b
      b_b @b_b PUBLIC DOMAIN 2/10/2023

      Ha ben tiens !

      SEAL stands for: S earch E ngine A bstraction L ayer

      The SEAL project is a PHP library designed to simplify the process of interacting with different search engines. It provides a straightforward interface that enables users to communicate with various search engines, including: Meilisearch, Opensearch, Elasticsearch, Algolia, Loupe, Redisearch, Solr, Typesense

      ▻https://schranz-search.github.io/schranz-search

      b_b @b_b PUBLIC DOMAIN
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 2/10/2023
      @b_b

      Haha @b_b ▻https://git.spip.net/spip-contrib-extensions/indexer/issues/9

      RastaPopoulos @rastapopoulos CC BY-NC
    Écrire un commentaire
  • @redasadki
    redasadki @redasadki via RSS 31/10/2022

    Pandemic preparedness through connected transnational #digital_networks of local actors
    ▻https://redasadki.me/2022/10/13/epidemic-preparedness-through-connected-transnational-digital-networks-of-

    In the Geneva Learning Foundation’s approach to effective humanitarian learning, knowledge acquisition and competency development are both necessary but insufficient. This is why, in July 2019, we built the first #Impact_Accelerator, to support local practitioners beyond learning outcomes all the way to achieving actual health outcomes. What we now call the #Full_Learning_Cycle has become a mature package of interventions that covers the full spectrum from knowledge acquisition to implementation and continuous improvement. This package has produced the same effects in every area of work where we have been able to test it: self-motivated groups manifesting remarkable, emergent leadership, connected laterally to each other in each country and between countries, with a remarkable ability to (...)

    #Global_health #Learning_strategy #epidemic_preparedness #humanitarian_health #localization #scale

    redasadki @redasadki via RSS
    Écrire un commentaire
  • @symphonic_prog
    Full Album @symphonic_prog 16/08/2022

    BIRTH – Born (2022)
    Studio Album, released in 2022
    “There are two kinds of fools. One says, “This is old, and therefore good.” And one says, ” This is new, and therefore better.” John Brunner, The Shockwave Rider.
    ▻https://www.youtube.com/watch?v=XVLfowcuUSI

    There won’t be comets crashing all around, no great lick of a sun’s flare nor a great flash of nuclear fission set to rend our atmosphere into collapse, there won’t be a hundred years long war to cloud the air with the smoke of burning bodies and fossil fuel’s sabotaged fonts. There will be no glorious warrior death for humanity enough to warrant any such miserable romancing of the end. There will be no grand spaceship escape or tunnel underground to wait out the rebirth of the Earth’s poisoned soul, only the slow and unbearable onset of hapless and hopelessly complacent denial-fiending we’ve experienced over the course of the last few years wherein merchants of death-en-masse’s profitable constriction becomes a new normative low, comfortably sinking more into destitution and servitude month over month. Mankind will eventually simply set down in place, set weary skull into each palm and quietly resign to a fetal balling-up under the stress of poisonous environmental collapse. The few who cling to hope among us are simply waiting for someone else to do the work, anyhow. San Diego, California-based progressive psychedelic rock trio Birth manifest an introspective examination of the macrocosm of nature, technology, and human behavior as these collectively degrading elements represent tandem collapse of society and environment. ‘Born‘ is not a self-involved statement of a project sorceled into being out of hardship but a very direct meditation upon impermanence, leaving the other half of the equation, Death, up to the logic of the listener.

    You’re gonna get hung-up on it, man. Lost. — Since the initial free download of ‘Birth‘ now appears to have been about half of the full-length experience verbatim and sits off the digital shelf at the moment, the search for meaning and precedence will inevitably find us looking to past works for foundation. This might end up being a blurring brushstroke, a distraction from the main event in the long run but the context is damned impressive when we consider the varietal body of work from the musicians involved. Approaching Birth‘s debut with the preface of some of the members’ previous spiritual predecessorship in Astra is a double-edged sword in the sense that yes, these are (some of) the same musicians involved in creating a similarly intoxicating mode of progressive psychedelic rock aspect yet it doesn’t necessarily build the right expectation, nor does ‘Born‘ read as a set of songs from the same headspace or intent; Expect a touch more late 60’s heavy blues, more immediately struck theatric hooks, and glorious feature of sublimely unfettered showmanship on guitar and electric piano performances with -none- of the epic longform stretches of build up, which the very popular Astra were known for. Not every second of the full listen is comparatively rousing in its conjure, they are a bit more to the point with the heavier stuff early on and sleepier when things lean celestial, so, you can set your copy of ‘The Weirding‘ aside and stop expecting a revival of that band.

    Without Richard Vaughn, whom was a third dimensional aspect of the Silver Sunshine/Astra sound from what I gather, the duo of Conor Riley and Brian Ellis appears to be aimed the U.K.’s still maturing near-second generation era progressive rock sound, somber in a bluesy sort of way but still very much eating at the early 70’s diner of ambitious wonderment incarnate in shaping their core conceit, and in the process of doing so they go bit more heavy psychedelic rock -and- spaced-out, gloomy prog-rock than Astra ever had. In this sense we can loosen up on the obvious comparisons to pre-‘Relayer‘ Yes and Armageddon‘s self-titled record without setting them aside, you’ve got myriad groups like Wobbler whom fully go there in an inspired way nowadays anyhow. This might seem like a bit of a contradiction with reality once you’ve heard lead single “For Yesterday” paired with the spaced, odd-time tension of “Cosmic Tears” but ‘Born‘ simply has a different presence, a more direct line to throwback kitsch and synthesizer worship without trying to be future-past submerged stuff. Though I am aware this’ll all read as heady drivel parsing away deep expectations, that choppy reconsideration of any direct association with past works will likely be the typical listener’s reaction as they inevitably contextualize Birth as separate from Astra. The important thing is to sit back, knock it off and let the theatric Crimson-ian ebb of the record (see: “Long Way Down”) do its thing and get to the point on its own time.

    Opener “Born” and its striking into simple riff/organ doubled rhythm immediately read to me as something like Atomic Rooster‘s “Vug”, that era of virtuosic electric piano and/or Hammond organ grinding minus the ‘tonk of Crane‘s rhythmic sensibilities. This turns out to be the wrong first impression all things considered, we’re not exactly in such an extroverted early Uriah Heep mood from the get go anyhow. The band right this wrong quickly with the suggestion of something a bit more moody, specifically the easier-going side of King Crimson‘s ‘Red‘, whereas my mind had been expecting a ‘Tarkus‘ sort of gig up front. We won’t necessarily hear this side of the band again until “Another Time” strikes back into it as a deep cut on Side B, so don’t read into the get-up of the opener too righteously.

    The sleepy, easier drift of previously released singles “Descending Us” and “For Yesterday” are the bulk of the full listen’s vital statement both in terms of defining style and lyrical voice as Birth explore various synth/keyboard voicing in pair with drawn out swells of lead guitar and exasperated, occasionally folkish vocal cadence. “Descending Us” is more-or-less unmatched per its surroundings in terms of pulling together something soulful yet heavy psych in its trade-off of inspired verses and fiery guitar solos which peak in the last two minutes of the piece. “For Yesterday” is the major work done on ‘Born‘ to convince the listener of its viability and/or lasting value, an opus which showcases the cloudy run-on compositional space where Riley excels most and presents a very clear love for the exaggerative arc of peak prog rock songcraft. Eh, albeit a succinct one even at ~10 minutes, which depicts the soul lamenting its inevitable dissolve in relation to others, a peak moment either way. The song does however feel like it drones on without a third act, which we must assign to very worthy Side B starter “Cosmic Tears”.

    See it as an intentional descent, a dissolution, a passage between mindset unto a darker new reality but I’d eventually find ‘Born‘ an in-quest of an original idiom that’d been difficult to expand as the songwriting process continued, what we experience is their working around a very persistent mood in order to shape a disparate narrative. What I’d imply therein is this sense that a second record from Birth will likely be entirely different, potentially a bit more on the emotional spectrum of the expressive, dread exhaling relief of closer “Long Way Down”. This’d end up being the most inspirational piece for my taste and in no small part due to it following the bustle of “Another Time”. Again, these songs feel like they were ripped from the same sessions as opener “Born” with a bit more severe twist on electric blues in their core statement which almost sounds like the band had transformed into themselves mid-album and wanted to stick with a running order that expressed this directly. The feeling is that of getting a bit lost, collapsing into torpor and waking up refreshed with a bit of a lingering dread in mind. Either that or I’m projecting the sullen arc of everyday life onto a very entertaining, retro-brained heavy rock record.

    Though ‘Born‘ occasionally feels like it’d been salvaged from the band suddenly realizing “Hey, we’ve got something here. Now we need to do something.” and making timely statement out of it in terms of a release it nonetheless lands substantial and well in keeping with the best tradition of ambitious yet personal progressive rock. Though the sleepier shades of dread on this album are its most imaginative cerebrum, and surely the thing to emphasize for newcomers, the restless showmanship and yearning introspection found on Birth‘s debut ultimately sold it upon repeated listens. I’ll resign myself to hindsight and any further iteration to frame the experience in mind accordingly. A moderately high recommendation.
    Source : ▻https://grizzlybutts.com/2022/07/10/birth-born-2022-review

    Songs / Tracks Listing
    1. Born (4:48)
    2. Descending Us (6:56)
    3. For Yesterday (9:14)
    4. Cosmic Tears (7:41)
    5. Another Time (5:36)
    6. Long Way Down (7:17)

    Total Time 41:32

    Line-up / Musicians
    – Conor Riley / vocals, synthesizer, electric piano, organ, acoustic guitar
    – Brian Ellis / guitar, electric piano, percussion
    – Trevor Mast / bass
    – Paul Marrone / drums

    #musique #full_album #progressive_rock #psychedelic_rock #prog_rock #music

    Full Album @symphonic_prog
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 5/07/2022

    Comparaison des définitions 480p, 720p, 1080p, 4K et 8K
    ▻https://www.son-video.com/guide/comparer-les-resolutions-480p-720p-1080p-4k-et-8k

    Comparatif simple et illustré des différentes tailles d’écrans

    #écran #résolution #fullHD #4K #8K

    cy_altern @cy_altern CC BY-SA
    • @marcimat
      marcimat @marcimat 5/07/2022

      Vivement la 16K ! 😁

      marcimat @marcimat
    Écrire un commentaire
  • @afnic
    AFNIC @afnic 4/01/2022

    Nous recrutons un développeur full stack senior (H/F) en CDI ▻https://www.afnic.fr/association-excellences/travailler-avec-nous/offres-emploi/developpeur-full-stack-senior-h-f-cdi

    #recrutement #emploi #offre #dev #fullstack #CDI

    AFNIC @afnic
    Écrire un commentaire
  • @martin
    Martin @martin PUBLIC DOMAIN 26/08/2021

    The 1980s’ video games that made France’s game industry - Polygon
    ▻https://www.polygon.com/videos/22633055/weird-french-adventure-games-polygon-video

    https://cdn.vox-cdn.com/thumbor/CBIR73KyXqdnkZJBSC7qjoGQc5s=/0x4:1920x1009/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22793517/FranceHed.jpg

    France plays an outsized role in the global game industry. It’s the second-largest producer of video games in the world, and the road there is paved with weird little adventure games. Before the industry went global, before AAA games really even existed, French developers were making offbeat, sexy, political games that reflected their own reality.

    Retour sur des jeux français atypiques des années 1980 et 1990.

    #jeu_vidéo #jeux_vidéo #culture #france #french_touch #nostalgie #histoire #jeu_vidéo_la_femme_qui_ne_supportait_pas_les_ordinateurs #chine_lanzmann #jeu_vidéo_la_femma #années_1980 #années_1990 #froggy_software #jean-louis_le_breton #fabrice_gille #jacques_chirac #jeu_vidéo_le_mur_de_berlin_va_sauter #jeu_vidéo_far_cry #mai_1968 #année_1968 #muriel_tramis #aérospatiale #année_1986 #cocktel_vision #jeu_vidéo_la_bosse_des_maths #jeu_vidéo_gobliins #jeu_vidéo_emmanuelle #jeu_vidéo_fascination #full_motion_vidéo #fms #jeu_vidéo_urban_runner #jeu_vidéo_méwilo #jeu_vidéo_freedom #patrick_chamoiseau #année_1902 #année_1988 #ministère_de_la_culture #jeu_vidéo_freedom_rebels_in_the_darkness #martinique #vivendi #année_2003 #avantilles #ubisoft #jeu_vidéo_haven #jeu_vidéo_dordogne

    Martin @martin PUBLIC DOMAIN
    Écrire un commentaire
  • @martin
    Martin @martin PUBLIC DOMAIN 5/08/2021

    Fullbright co-founders Steve Gaynor accused of employee mistreatment - Polygon
    ▻https://www.polygon.com/22610490/fullbright-steve-gaynor-controversy-stepped-down-open-roads

    https://cdn.vox-cdn.com/thumbor/DeVJOlaiUTuto4Mvfxfh6qNp0Ao=/0x38:1920x1043/fit-in/1200x630/cdn.vox-cdn.com/assets/3053999/gone_home_hero.jpg

    Fullbright co-founder Steve Gaynor, known for his work on Gone Home and Tacoma, has stepped down from his role as creative lead on Open Roads following multiple allegations regarding his treatment of Fullbright staff.

    On dirait que le scandale d’Activision-Blizzard, ainsi que les précédents abus dans l’industrie du jeu vidéo, permettent aux langues de se délier et témoigner dans la presse des divers abus dont sont victimes les employés du secteur travaillant dans des environnements toxiques qui n’ont pas lieu d’être. Le problème semble être systémique, plutôt que limité à certaines entreprises.

    #jeu_vidéo #jeux_vidéo #fullbright #steve_gaynor #business #ressources_humaines #environnement_toxique #discrimination #misogynie #micromanagement #jeu_vidéo_gone_home #jeu_vidéo_tacoma #jeu_vidéo_open_roads #annapurna_interactive #personal_branding #eréputation #twitter

    Martin @martin PUBLIC DOMAIN
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 27/01/2021
    2
    @rastapopoulos
    @gblin
    2

    anthologie_du_detournement
    ▻http://www.mozinor.com/anthologie_du_detournement.htm

    Un article « encyclopédique » sur la Classe américaine et plein d’autres détournements

    Et tant qu’on y est, les versions HD disponible en streaming :
    – La classe américaine : ►https://www.youtube.com/watch?v=AamkpGfocp8


    – Ca Détourne (ou Le Triomphe De Bali Balo ou La Splendeur De La Honte ou L’Invasion Des Pervers Polymorphes) : ▻https://www.youtube.com/watch?v=2yj_CeKopfM

    – Derrick contre Superman : ▻https://www.youtube.com/watch?v=TsfMrVkxGTU

    #détournement #classe_américaine #fullHD #ça_détourne

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 19/09/2019
    1
    @spip
    1

    Révision 104831 pour plugins/fulltext – SPIP-ZONE
    ▻https://zone.spip.net/trac/spip-zone/changeset/104831/spip-zone/_plugins_/fulltext

    la constante à ajouter pour que les recherches avec le plugin FULLTEXT fonctionnent de façon non-stricte (= équivalent à avoir * à la fin du terme recherché)
    cf ▻https://contrib.spip.net/Fulltext#comment492512

    #fulltext #SPIP #recherche

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @radio
    Radio Panik @radio 14/05/2019

    P.R.O.U.G. #60
    ▻http://www.radiopanik.org/emissions/p-r-o-u-g-/p-r-o-u-g-60

    http://www.radiopanik.org/media/uploads/2019/05/10/fotoramio.jpg

    ➢ #buffalo_beats_festival - Chapter 2 | LGNE

    ➢ #neuronod

    ➢ #zeridium

    #Proug #full_on #les_gros_nazes_évolution #psygressive #meelk #Proug,full_on,les_gros_nazes_évolution,psygressive,buffalo_beats_festival,zeridium,meelk,neuronod
    ▻http://www.radiopanik.org/media/sounds/p-r-o-u-g-/p-r-o-u-g-60_06714__1.mp3

    Radio Panik @radio
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 12/04/2019

    [Interview] Tackling Complex Architecture: Do’s and Don’ts
    ▻https://hackernoon.com/interview-tackling-complex-architecture-dos-and-don-ts-d6f8f34d694d?sour

    Image credit: PexelsWhat approach should be used when working on complex architecture? How do you build software that is easy to support and scale, and what are the mistakes to avoid?I had the opportunity to sit down with Sergiy Kukunin, a #full-stack developer at Spotlight Labs with 10+ years of experience, and talk to him about these issues in greater detail.The first question is, what should good software look like?Let’s first decide what the software is, and what it looks like from a non-programmer perspective. We are used to thinking about software as a tool for solving business tasks and problems.Imagine yourself as an entrepreneur who needs to solve such a task. You have two options: choose software that is available right now and will correctly solve your problem, but is entirely (...)

    #software-development #software-architecture #complex-architecture #enterprise-software

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 4/04/2019

    Best 2019’s Companies To Hire Dedicated Full Stack Developers For Startups & SME’s in India/USA
    ▻https://hackernoon.com/best-2019s-companies-to-hire-dedicated-full-stack-developers-for-startup

    Here is the list of top full stack development companies in India & USA. These best full stack software companies are selected based on Google, Clutch, Glassdoor & Goodfirms review.The emergence of revolutionary technologies are not alien to us, we all have felt and seen its effect on our world. I also have a clear understanding of how these technologies make us advanced in terms of technical facilities and their effects.These digital advancements have made it a mandate for businesses to build smart software solutions in order to keep up the pace. Hence, the demand of #full-stack development companies is increasing.However, finding the right tech partner from a pool of full-stack development companies is quite challenging. In order to facilitate your selection, I have prepared a (...)

    #mobile-apps #web-development #startup #mobile-app-development

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 3/04/2019

    This is why your startup needs to hire full stack developers
    ▻https://hackernoon.com/this-is-why-your-startup-needs-to-hire-full-stack-developers-dc2ad074c9f

    https://cdn-images-1.medium.com/max/1024/1*ueetaS61my2qkLzY1gPYFQ.jpeg

    Every year, we see new technology trends popping up. With it, come new programming languages, frameworks, and other stuff for developers to learn and build upon. So it’s needless to say that finding a full stack #developer, let alone becoming one is more difficult than it has been ever before. But your startup needs them, and here is why.In any software/web/app development process, there are 3 crucial components. The front-end, the back-end, and the database architecture that connects everything. Full stack developers are by definition, those that have proficiency in all three of these and can work independently on any web development project without the need for additional support.If you don’t believe in the hype of full stack developers, then definitely you might consider looking for (...)

    #full-stack-developer #web-development #app-development #software-development

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 14/03/2019

    Full-stack Engineers Aren’t Myths — They’re Makers
    ▻https://hackernoon.com/full-stack-engineers-arent-myths-they-re-makers-ca3b725d1a46?source=rss-

    https://cdn-images-1.medium.com/max/1024/1*rPIUFxoNHVNM1sLte7bzAQ.jpeg

    Full-stack Engineers Aren’t Myths — They’re MakersIllustration by Hawnuh LeeIn 2018, there were roughly 30% more full-stack engineering roles posted to AngelList than there were front-end or back-end positions. To many in the engineering community, this is a bad thing.Over the last 10 years, think piece after think piece has been published questioning the legitimacy of full-stack engineering roles. The criticism can be bucketed into two claims:Full-stack engineering roles are unrealistic. With how complex the average stack is today, no one could possibly become an expert in every piece of it.Full-stack engineering roles are exploitative. Cash-strapped companies hire full-stack engineers to do the job of multiple engineers for one salary.But does the data support either of these claims?In short: (...)

    #fullstack-engineer-myth #full-stack-engineer #software-development #hackernoon-top-story #startup

    • #AngelList
    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 15/02/2019

    Full Stack Developers: Everything You Need to Know
    ▻https://hackernoon.com/full-stack-developers-cacbffb6172b?source=rss----3a8144eabfe3---4

    https://cdn-images-1.medium.com/max/802/1*fU9J2qNJh7vPQmGx84u5gw.jpeg

    Full stack developers, MEAN stack developers, MERN stack developers, etc. etc. etc.!!! The software development industry is full of these homonyms. Being a Sr. software consultant, I come across some common questions on full stack coders on a day-to-day basis from businesses want to develop their web or mobile apps. Some questions are like:*What are full stack developers? Are they superhumans in the world of coding? :D*What do exactly full stack developers do?*How full-stack programmers and coders are different from normal programmers?*What benefits will I get if I choose full stack coders?*Will I get the same level of coding if I choose a full stack developer, as I will get when I choose a normal?Okay so in this blog, I am going to answer some common queries of businesses related to full (...)

    #full-stack-development #full-stack-programmer #hire-full-stack-developer #full-stack-developer #mean-stack-developer

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 23/07/2018

    Should You Be a Back-End, Front-End or Full-Stack Developer?
    ▻https://hackernoon.com/should-you-be-a-back-end-front-end-or-full-stack-developer-cf3a39aa95de?

    https://cdn-images-1.medium.com/max/1024/0*6gRDRjCfDuGqsjYn.jpg

    So you’ve decided on a career in dev. You already picture your impeccably designed business card in smooth, bold, font, “Software Developer Extraordinaire, Your Name”, slickly removed from your blazer pocket and passed along to the CEO of Google/Activision/One of the 50 Tech Companies in Australia Everyone Wants to Work for Right Now…But wait. What kind of software developer are you going to be? A front-end developer? A back-end developer? Or do you want to be the hybrid: the full-stack developer? That big-name CEO on the other end of your business card gifting is probably going to want to know where your skills lie!Today we take a close look at each of these 3 types of development areas: front-end, back-end and full-stack. By the end of this read, you should have a better idea of where (...)

    #web-development #front-end-developer #full-stack-developer #software-developmen #back-end-developer

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 7/05/2018

    Tech’d Out: How This Podcast from Two Fullstack Instructors Will Help You Finally Get #programming
    ▻https://hackernoon.com/techd-out-how-this-podcast-from-two-fullstack-instructors-will-help-you-

    https://cdn-images-1.medium.com/max/1024/1*czCvRbGQOtUYP6z26ubAoA.jpeg

    Corey (that’s me on the right!) & Geoff (partner in crime) recording Tech’d Out at coding bootcamp Fullstack Academy.Brought to you by Full Stack AcademyTech’d Out: How This Podcast from Two Fullstack Instructors Will Help You Finally Get ProgrammingI’m Corey Greenwald, and me and my partner in crime Geoff Bass are instructors at Fullstack Academy in New York city. In our years as instructors and developers, we’ve come to realize that knowing how to program isn’t all there is to understanding the idea of programming. To see the whole picture, you need to learn the history of tech and why things work the way they do. So we started a podcast called Tech’d Out to help you learn the who, what, when, where, and why of programming, in addition to however much you know about the how.In the first (...)

    #javascript #full-stack-developer #web-development #weekly-sponsor

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @reka
    Phil Reka docs & archives @reka CC BY-NC-SA 30/04/2018
    1
    @02myseenthis01
    1

    Hand-drawn Beijing: electric cars and imaginary temples – in pictures | Cities | The Guardian

    ▻https://www.theguardian.com/cities/gallery/2018/apr/30/beijing-map-artists-view-gallery-pictures-fuller-gareth-wood

    https://i.guim.co.uk/img/media/d761e18917a8934b63fe4126c150d2edcb499c10/0_0_844_652/master/844.jpg?w=720&q=55&auto=format&usm=12&fit=max&s=2fdb4923570a28b07821cdd06a74c1ba https://i.guim.co.uk/img/media/bf3e831c060f6496af0e3ef5b5f74732111f8287/0_0_900_691/master/900.jpg?w=720&q=55&auto=format&usm=12&fit=max&s=5004cfff7dc13775887f440a980923fd

    After 1,385 kilometres wandering the streets and more than 1,000 hours of drawing, British artist Fuller has produced an incredibly detailed vision of Beijing that takes us from looming coal plants to the fictional Temple of Loneliness and Confusion

    #art #fuller #dessin #illustration #graphisme

    • #Beijing
    Phil Reka docs & archives @reka CC BY-NC-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 19/04/2018

    Full Stack Web Application using #react, Node.js, Express and #webpack
    ▻https://hackernoon.com/full-stack-web-application-using-react-node-js-express-and-webpack-97dbd

    https://cdn-images-1.medium.com/max/1024/1*y6C4nSvy2Woe0m7bWEn4BA.png

    Create React App is a quick way to get started with React development and it requires no build configuration. But it completely hides the build config which makes it difficult to extend. It also requires some additional work to integrate it with an existing Node.js/Express backend application.In this guide, we will walk through the set up of a simple full stack React application with a Node.js and Express backend. Client side code is written in React and the backend API is written using Express. This application is configured with Airbnb’s ESLint rules and formatted through prettier.Source code for this application can be found here.Quick Start# Clone the repositorygit clone ▻https://github.com/crsandeep/simple-react-full-stack# Go inside the directorycd simple-react-full-stack# Install (...)

    #javascript #expressjs #full-stack

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 15/03/2018

    Religion In The #workplace ?
    ▻https://hackernoon.com/religion-in-the-workplace-fab9c5f91348?source=rss----3a8144eabfe3---4

    https://cdn-images-1.medium.com/max/1024/0*7D7bz5VnZRWGrVCW.jpeg

    I’m a Chassidic Jew and I’m proud of who I am.That’s very nice, Mendel, but what does that have to do with technology or the workplace?Well, recently, there was an issue at the software development bootcamp that I’m attending. Apparently, some people were using methods to pass their belt exams (the exams in the Coding Dojo Software Development Bootcamp are called belt exams) that were heavily frowned upon. While I know that those students believed themselves to be acting with positive intentions, those who were determined by the staff to have acted untowardly were required to retake their Python belt exams. So, that was embarrassing for everyone.When I asked our lead instructor about the issue, he seemed more disappointed than upset. Potential employers don’t really care about your 14 week (...)

    #codingbootcamp #software-development #full-stack #judaism

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @reka
    Phil Reka docs & archives @reka CC BY-NC-SA 5/08/2017
    4
    @vanderling
    @mad_meg
    @02myseenthis01
    @hassan_nya
    4

    Quand les artistes deviennent les cartographes de nos villes | méridianes géo
    ▻https://meridianes.org/2017/07/24/quand-les-artistes-deviennent-les-cartographes-de-nos-villes

    https://meridianes.files.wordpress.com/2017/07/capture-d_c3a9cran-2017-07-24-c3a0-14-14-30.png?w=1200 https://meridianes.files.wordpress.com/2017/07/capture-d_c3a9cran-2017-07-24-c3a0-14-51-16.png?w=610

    Gareth Wood (alias Fuller)

    Gareth Wood a passé dix ans sur son œuvre : la carte affective de Londres. Le graphisme et l’interprétation géographique sont éminemment personnels. Il tente par son travail de transformer en carte cette ville dans laquelle il a vécu ; son ambiance, ses gratte-ciels sans limites, ses clubs underground, sa décadence, son énergie infinie. Fuller décrit sa pratique comme « faire une collection de lettres d’amour cartographiques ».

    Le nom de Fuller emprunté par l’artiste n’est sans doute pas anodin. Il se réfère à la projection de Fuller qui vise à dessiner une carte de la Terre, qui à la fois conserverait les proportions des continents tout autant que leurs formes connues, tout en parvenant à passer de la représentation du globe terrestre à une surface plane, La projection de Fuller a été créée par Richard Buckminster Fuller en 1954. Elle est appelée en anglais Dymaxion map, contraction de« dynamic maximum Tension ».

    #art #cartographie #villes #urban_matter #visualisation

    • #Gareth Wood (Fuller)
    Phil Reka docs & archives @reka CC BY-NC-SA
    • @cdb_77
      CDB_77 @cdb_77 5/08/2017

      #Gareth_Wood #Londres #cartographie_affective #cartographie_sensible #Fuller

      CDB_77 @cdb_77
    • @mad_meg
      mad meg @mad_meg CC BY 5/08/2017
      @seenthis

      Mon frère fait ce genre de travail sur Lyon
      ▻http://blastart.fr/mappedmap-lyon-2014
      Ici une vidéo de mapping sur sa carte de la ville
      ▻https://www.youtube.com/watch?v=_5re8npcKyI

      J’avais fait aussi un travail proche de la cartographie sur Lisbonne et Shanghai (c’est plutot des panoramas que des cartes) qui est toujours pas en ligne mais ca devrait venir un jour. Ca me fait pensé que je vais allé bossé dessus plutot que de flooder @seenthis :)

      mad meg @mad_meg CC BY
    • @fil
      Fil @fil 5/08/2017

       ?

      Fil @fil
    • @reka
      Phil Reka docs & archives @reka CC BY-NC-SA 5/08/2017

      Projet n° X à présenter sur visionscarto donc... :)

      Phil Reka docs & archives @reka CC BY-NC-SA
    Écrire un commentaire
  • @radio
    Radio Panik @radio 1/06/2017

    #Full_Fridge Tribute session mixed by #Snooba
    ▻http://www.radiopanik.org/emissions/mix-delivery/full-fridge-tribute-session-mixed-by-snooba-

    Opportunity Makes a Thief. Under the ’’Fooding’’ Radio Panik’s thema, Full Fridge top manager aka Cloudnumber’s sent to us some lover Tips still fresh from FULL FRIDGE back catalogue that Snooba were eager to cook for you. Therefore, the performance of a unfair independent company relies on its ability to mobilize collective intelligence and knowledge. Taking a arty dose of inspiration from seminal kraut & #IDM electronic composers, Iconoclastic contribution builds from the hypnotic futuristic groove & trouble batty bass into a molecular peak time anthem. That results a kaleidoscopic musical exploration as a truly unique proposition, a myriad of different sub electronic genres deformed under an oblique lens to create sun-drenched space music travel. (...)

    #Cuisine_moléculaire #alimentation2017 #electronica #Mix #Cuisine_moléculaire,alimentation2017,electronica,Mix,Full_Fridge,IDM,Snooba
    ▻http://www.radiopanik.org/media/sounds/mix-delivery/full-fridge-tribute-session-mixed-by-snooba-_03685__1.mp3

    Radio Panik @radio
    Écrire un commentaire
0 | 25 | 50 | 75

Thèmes liés

  • #full_hd
  • #hd
  • #fulltext
  • #spip
  • #tv
  • #vidéo
  • #mysql
  • #1080p
  • #fullscreen
  • #full_mittal_racket
  • #hdmi
  • #gp
  • #html5
  • #hd_ready
  • #projecteur
  • technology: api
  • #écran
  • #css
  • #search
  • company: google
  • #php
  • company: arcelor
  • #comparaison
  • #javascript
  • #problème
  • #full-stack-developer
  • #full-stack
  • #test
  • company: sony
  • #achat
  • #samsung
  • #lcd
  • #home_cinema
  • #web-development
  • #télé
  • #software-development
  • #spip-zone
  • #canon_eos_5d_mark_ii
  • #24p
  • #film