Les actualités du Lundi 13 février 2017 dans les métiers du web - Marmits.com - Reims

Le: 13 02 2017 à 23:00 Web Design Shock Auteur: RickMartinez

broken-link-checker-wordpress-pluginA complete plugin for WordPress made to check if your website has broken links, especially useful for really big sites. The plugin also detects if there are missing images, and notifies you via email and dashboard if any of them are found.

The post Broken Link Checker WordPress Plugin appeared first on ByPeople.

Le: 13 02 2017 à 22:09 presse-citron.net Auteur: Emmanuel Ghesquier

Déconvenue ou changement de stratégie ? Facebook a annoncé mercredi 8 janvier la fermeture de 200 points de démonstration ouverts chez Best Buy, l’enseigne américaine spécialisée dans la vente de matériel électronique grand public. Sur les 500 déjà ouverts, la visibilité de Facebook en termes de réalité virtuelle est donc fortement mise à mal.

Le: 13 02 2017 à 22:01 open-source-guide.com Auteur: com@smile.fr (Samuel Deberles)

Pour la première fois, les développeurs un accès libre au code du navigateur de Google pour iOS. Bien que la firme de Mountain View ait construit son navigateur sur les codes source du projet open source Chromium, le répertoire contenant le code source de la version iOS n’était pas disponible à ce jour.

Le: 13 02 2017 à 22:00 jquery4u.com Auteur: Baljeet Rathi

Separate elements of code in hospital drips. A metaphor for DOM traversal.

[special]DOM traversal means that once you have selected an element or elements on a web page, you can move through the page elements relative to your initial selection. During this process, you can either replace the original selection with a new one or add and subtract elements from it.[/special]

In this article we will look at the available methods for jQuery DOM traversal, and see how the library provides many ways for us to easily select elements based on their relationships to other elements in the page.

Filtering Elements

Let's begin by looking at how to filter a selection down to something more specific. You can filter elements based on a lot of conditions like their position with respect to other elements and whether or not they have a specific class. Most of the time, you will end up with fewer elements selected than you began with.

Here is a list of the different filtering methods:

  • eq — This method reduces the set of matched elements to the one that is located at the index you specified. The indexing is zero based. Therefore, to select the first element, you will have to use $("selector").eq(0). Starting with version 1.4, you can provide a negative integer to begin counting elements from the end instead of the beginning.

  • first and last— The first method will return just the first element from the set of matched elements while last will return the last element from the set of matched elements. Neither of these methods accepts any arguments.

  • slice — If you are looking for all elements in a set whose index lies within a given range, you can using slice(). This method accepts two arguments. The first one specifies the starting index from which the method should start slicing and the second argument specifies the index at which the selection should end. The second argument is optional and if omitted results in the selection of all elements whose index is greater than or equal to start.

    See the Pen eq and slice methods by SitePoint (@SitePoint) on CodePen.

  • filter — This method will reduce your set of elements to those that either match the selector or pass the criteria set by you in the function that is passed to this method. Here is one example of this method with selectors:

    $("li").filter(":even").css( "font-weight", "bold" );
    

    You could also select the same elements using a function:

    $("li")
    .filter(function( index ) {
       return index % 2 === 0;
    })
    .css( "font-weight", "bold" );
    

    You can also use the function to perform more complicated selections like:

Continue reading %A Comprehensive Look at jQuery DOM Traversal%

Le: 13 02 2017 à 21:36 presse-citron.net Auteur: Emmanuel Ghesquier

Bug navigateur Safari

Il y a des bugs qui sont parfois plus gênants que d’autres, car ils donnent l’impression qu’ils ont été mis là, en espérant que personne ne mette la main dessus. Apple vient d’évoquer un bug pour le moins embarrassant puisque l’historique de navigation de Safari, lorsqu’il était supprimé était en réalité aussi stocké sur iCloud…

Le: 13 02 2017 à 21:00 Web Design Shock Auteur: MiltonKing

readable-reusable-refactorable-javascript-online-bookAn online book that covers the cleanest code concepts adapted for JavaScript. It is not a style guide, instead, it's a complete guide to producing readable, reusable, and refactorable applications in JavaScript.

The post Readable, Reusable & Refactorable JavaScript Online Book appeared first on ByPeople.

Le: 13 02 2017 à 19:28 presse-citron.net Auteur: Emmanuel Ghesquier

Google Maps met en place un système de récompenses pour les contributeurs

Google Maps, toujours en quête de nouveautés et de fonctionnalités plus pratiques pour mettre en avant son service de cartographie, vient une nouvelle fois de créer la surprise en proposant un système de partage de favoris entre amis.

Le: 13 02 2017 à 19:00 Web Design Shock Auteur: JimWalker

ios-android-react-native-animation-libraryA complete library for React, Android and iOS to create compelling and beautifully styled animations. It works by rendering After Effects animations in real time, letting mobile apps use these animations easily without worrying about loading times.

The post Lottie: iOS, Android & React Native Animation Library appeared first on ByPeople.

Le: 13 02 2017 à 18:52 Les dossiers référencement de WebRankInfo Auteur: Olivier Duffez

Comme la plupart d'entre vous je suppose, je partageais manuellement mes contenus sur les réseaux sociaux. Jusqu'à ce que j'utilise un outil de planification et d'automatisation qui m'a fait doubler mon trafic (issu des réseaux sociaux) en y passant 3 fois moins de temps... Découvrez comment faire pareil !Comment j'ai doublé mon trafic réseaux sociaux (en […]

Cet article écrit par Olivier Duffez a été publié sur Comment j'ai doublé mon trafic réseaux sociaux (en y passant 3 fois moins de temps)

Le: 13 02 2017 à 18:40 presse-citron.net Auteur: Setra

Jeremy Liew, le premier investisseur de Snapchat, explique pourquoi le design de l’application peut créer autant de confusion.

Le: 13 02 2017 à 17:14 FrenchWeb.fr Auteur: Jeanne Dussueil

36% se rendent directement sur le site du média, contre 35% qui arrivent via Facebook, Twitter..., d'après le Pew Research.

Author information

Jeanne Dussueil

Pour contacter la rédaction: cliquez ici
Devenez "la start-up de la semaine" : faites-vous connaitre!
Ajoutez un événement à notre agenda: cliquez ici

Le: 13 02 2017 à 17:08 line25.com Auteur: Iggy

Adobe offers a large variety of creative tools that can help you tremendously in the design process, whether you’re a web designer or more focused on creating prints, illustrations, and even movies! In this article, we looked for the best 100 tips for Adobe Creative Tools that will help you optimize your workflow and become better […]

The post 100 Tips for Adobe Creative Tools to Optimize Your Workflow appeared first on Line25.

Le: 13 02 2017 à 17:00 Web Design Shock Auteur: LukasBjorke

vector-ai-vintage-stationery-elementsA stationery set made in vintage style with 60 elements for businesses and freelancers' purposes. The set includes flyers, business cards, folders, posters, and tri-folds, within 5 packages built in Adobe Illustrator.

The post 60 Vector AI Vintage Stationery Elements appeared first on ByPeople.

Le: 13 02 2017 à 16:42 Journal du Net Développeurs

Leurs effets sur le secteur sont en tous cas incertains et les clauses de parité exclues des contrats persistent sous une autre forme, estime la profession.

Le: 13 02 2017 à 16:21 Journal du Net Développeurs

La start-up cherche à lever 500 000 euros pour devenir un leader du marché de la réservation en ligne en France et étendre ses activités en Europe.

Le: 13 02 2017 à 16:18 FrenchWeb.fr Auteur: Maxence Fabrion

La start-up vise d’abord les pays transfrontaliers de la France.

Author information

Maxence Fabrion

Maxence Fabrion

Journaliste chez Adsvark Media / FrenchWeb - We Love Entrepreneurs

Le: 13 02 2017 à 15:47 Journal du Net Développeurs

Spécialiste du recrutement dans l'informatique, notre partenaire Hired a des informations précises sur les salaires des développeurs. Voici, ce mois-ci, ses graphiques sur l'évolution de l'attractivité et de la rémunération des experts React.js.

Le: 13 02 2017 à 15:42 FrenchWeb.fr Auteur: contributeur

Robert Collart, ex-Chief Happiness Officer de Poult réagit à ces trois principes des entreprises libérées.

Author information

contributeur

contributeur

Les contributeurs sont des auteurs indépendants de la Rédaction de FrenchWeb. Leurs propos et positions leurs sont personnels.

Le: 13 02 2017 à 15:39 Journal du Net Développeurs Auteur: Mourad Krim

Ces outils d'automatisation des tâches permettent d'alléger la charge de travail quotidienne. Ils proposent des API prêtes à l'emploi et faciles à mettre en œuvre.

Le: 13 02 2017 à 15:23 Journal du Net Développeurs

Toutes les nominations du secteur du logiciel et des sociétés de services informatiques. Du mouvement cette semaine chez Dell EMC, HPE, Lumesse, EasyVista, SPIE ICS, Compart et Kamp'n

Le: 13 02 2017 à 15:00 Web Design Shock Auteur: PeteHoollahan

minimal-online-favicon-generatorAn online tool to create minimal favicons using just web elements like fonts, font color, background color, and shape, which can be exported in both PNG and ICO formats.

The post favicon.io: Minimal Online Favicon Generator appeared first on ByPeople.

Le: 13 02 2017 à 14:40 Journal du Net Développeurs

Comme chaque mois, focus sur les dernières innovations marquantes qui changent l’expérience shopping. Ce mois-ci, une avancée technologique majeure pourrait bien changer notre façon de faire du shopping. Les commerçants deviennent aussi de plus en plus performants en ce qui concerne la livraison.

Le: 13 02 2017 à 14:35 presse-citron.net Auteur: Thomas-Estimbre

Galaxy S8+

Généralement bien informé, Evan Blass a donné quelques détails ce week-end concernant les prochains smartphones de Samsung.

Le: 13 02 2017 à 14:31 presse-citron.net Auteur: Setra

Vous pouvez déjà tester Google Assistant sur un smartphone non Pixel. Mais ce n’est pas garanti que ça marche.

Le: 13 02 2017 à 14:00 FrenchWeb.fr Auteur: contributeur

Les données peuvent jouer le rôle de monnaie de l’économie numérique sous certaines conditions.

Author information

contributeur

contributeur

Les contributeurs sont des auteurs indépendants de la Rédaction de FrenchWeb. Leurs propos et positions leurs sont personnels.

Le: 13 02 2017 à 13:45 Webdesigner Depot Auteur: Carrie Cousins

Everywhere you look there are new releases, and new tools popping up, but how do you know which elements are worth your time? In our monthly roundup we present the latest resources that you’ll want to add to your toolbox. Almost everything on the list this month is free, with a few high-value paid apps and […]

Le: 13 02 2017 à 13:38 open-source-guide.com Auteur: com@smile.fr (Marie SAUVEGRAIN)

Le centre de recherche européen du physique des particules continue d’appuyer ses infrastructures de calcul sur OpenStack et s’apprête à ajouter près de 100 000 cœurs de calcul ainsi que des services « bare metal ».

Le: 13 02 2017 à 12:28 jqueryrain.com Auteur: Admin

Simple Drag & Drop Email builder with responsible HTML export.Just build an Email, export him as HTML and send it!.You can install it in any Virtual Hosts you want, like […]

The post jQuery Drag & Drop Email Builder appeared first on jQuery Rain.

Le: 13 02 2017 à 12:17 Les dossiers référencement de WebRankInfo Auteur: Olivier Duffez

Découvrez tous les détails des derniers résultats financiers de Google (et Alphabet Inc.) : chiffres à jour, graphiques, évolutions sur le chiffre d'affaires, les bénéfices, la part d'AdSense, les réserves financières, le nombre d'employés, etc.Résultats financiers de Google détaillés (chiffres janvier 2017)Cet article écrit par Olivier Duffez a été publié sur Résultats financiers de Google […]

Cet article écrit par Olivier Duffez a été publié sur Résultats financiers de Google détaillés (chiffres janvier 2017)

Le: 13 02 2017 à 12:05 presse-citron.net Auteur: Setra

Apple demande aux autres entreprises de faire une contre-attaquer.

Le: 13 02 2017 à 12:00 FrenchWeb.fr Auteur: Myriam Roche

Facebook compte 1,2 milliard d'utilisateurs actifs par jour et Snapchat, 158 millions d’utilisateurs.

Author information

Le: 13 02 2017 à 11:47 jqueryrain.com Auteur: Admin

hrStringColor is a jQuery plugin to set color on seperate Characters in string. Option Details : string – Add Your strings, or it will select value automatically from your selected […]

The post hrStringColor : Set Color on Seperate Characters in string appeared first on jQuery Rain.

Le: 13 02 2017 à 11:37 Journal du Net Développeurs

Le numérique crée-t-il vraiment beaucoup d'emplois ? Dans la région qui concentre tous les ténors du secteur, de nouveaux indicateurs révèlent un ralentissement de la croissance du nombre d'emplois liés aux nouvelles technologies.

Le: 13 02 2017 à 11:33 FrenchWeb.fr Auteur: Maxence Fabrion

Pour l’heure, la fonctionnalité est disponible aux États-Unis sur Windows 10.

Author information

Maxence Fabrion

Maxence Fabrion

Journaliste chez Adsvark Media / FrenchWeb - We Love Entrepreneurs

Le: 13 02 2017 à 11:30 presse-citron.net Auteur: Invité

Comment mieux communiquer sur une plateforme dédiée presque exclusivement à l’image ? Conseils et cas d’usage.

Le: 13 02 2017 à 11:30 jqueryrain.com Auteur: Admin

Autocomplete, or word completion, is a feature in which an application predicts the rest of a word a user is typing. In graphical user interfaces, users can typically press the […]

The post jQuery Autocomplete with Json appeared first on jQuery Rain.

Le: 13 02 2017 à 11:06 FrenchWeb.fr Auteur: Claire Spohr

A peine plus du tiers des dirigeants interrogés par le MIT dans le cadre d'une étude ont investi dans l'intelligence artificielle, en Asie et ailleurs dans le monde.

Author information

Claire Spohr

Pour contacter la rédaction: cliquez ici Devenez "la start-up de la semaine" : faites-vous connaitre! Ajoutez un événement à notre agenda: cliquez ici

Le: 13 02 2017 à 11:03 cssdesignawards.com

A story-telling website that unfolds the culture of Fischer Beer.

Le: 13 02 2017 à 11:02 presse-citron.net Auteur: Setra

Cette rumeur lancée par NBC n’inquiète cependant pas les avocats de Snowden.

Le: 13 02 2017 à 10:31 FrenchWeb.fr Auteur: Jeanne Dussueil

D'ici quatre ans, le constructeur a annoncé son intention de construire un «robot taxi».

Author information

Jeanne Dussueil

Pour contacter la rédaction: cliquez ici
Devenez "la start-up de la semaine" : faites-vous connaitre!
Ajoutez un événement à notre agenda: cliquez ici

Le: 13 02 2017 à 10:14 korben.info Auteur: Korben

Alors ça c'est rigolo. Le hacker MrCheeze a mis au point une version modifiée d'une sauvegarde de Pokemon Bleu et Rouge sur GameBoy, capable de se répliquer et d'infecter le jeu d'un autre joueur, lorsque les 2 consoles sont connectées avec le câble (GameLink). Mais sont petit virus implémente aussi un outil qui permet de modifier > Lire la suite

Cet article merveilleux et sans aucun égal intitulé : Un virus qui s’attaque à Pokemon Rouge et Bleu ; a été publié sur Korben, le seul site qui t'aime plus fort que tes parents.

Le: 13 02 2017 à 10:11 ballajack.com Auteur: Ballajack

Le stockage des données en ligne, dans le cloud pour parler comme un geek, devient peu à peu une technique de plus en plus utilisée par les professionnels et les particuliers, pour enregistrer ou sauvegarder leurs fichiers. Finis, les disques durs externes, les CD et les DVD gravés à la durée de vie aléatoire, les […]

Le: 13 02 2017 à 09:49 FrenchWeb.fr Auteur: contributeur

Il est absolument nécessaire d’anticiper les tendances de leurs marchés tout en fournissant une expérience d’achat irréprochable à leurs clients.

Author information

contributeur

contributeur

Les contributeurs sont des auteurs indépendants de la Rédaction de FrenchWeb. Leurs propos et positions leurs sont personnels.

Le: 13 02 2017 à 09:00 FrenchWeb.fr Auteur: Myriam Roche

«Notre solution permet d’offrir un service plus moderne et plus adapté à la nouvelle génération.»

Author information

Le: 13 02 2017 à 09:00 korben.info Auteur: Korben

Comme à chaque fois avec ce genre d'outil, je ne pense pas que vous constatiez quoi que ce soit sur votre propre connexion ADSL ou Fibre à la maison. Par contre si vous êtes sur un réseau d'entreprise, d’hôtel ou dans un pays qui malmène Internet, l'application OONI a tout son sens. OONI ça veut > Lire la suite

Cet article merveilleux et sans aucun égal intitulé : OONI Probe – Mesurer le niveau de manipulation, de surveillance et de censure de votre Internet ; a été publié sur Korben, le seul site qui t'aime plus fort que tes parents.

Le: 13 02 2017 à 07:28 FrenchWeb.fr Auteur: Jeanne Dussueil

L'enjeu est de prendre rapidement des parts, sur un marché de l'agence de voyage en ligne estimé à 1 091 milliards de dollars d'ici 2022. Interview de Jonathan Sépulchre, responsable France de Skyscanner. 

Author information

Jeanne Dussueil

Pour contacter la rédaction: cliquez ici
Devenez "la start-up de la semaine" : faites-vous connaitre!
Ajoutez un événement à notre agenda: cliquez ici

Le: 13 02 2017 à 06:10 Web Design Shock Auteur: Admin

previewqueenThis week we bring you 26 handmade fonts in 20 different Typefaces from QueenType! These handmade types are perfect for any invitation, card, design, posters, you name it! At an incredible 96% off, you will pay around $0.7 per font! The Handmade Fonts Bundle is a beautiful handmade script that gives the natural looks. Great for Apparel Brand, Logos, printed quotes, invitations, image overlays, greeting cards, product packaging, text headers, any greeting cards, book cover, Painting design style, or any design that needs natural and personal touch & whatever else your imagination holds! Mix and match the alternate characters to add an attractive message to your design.

Highlights:

  • Get yourself a gorgeous collection of 26 handmade script fonts from QueenType
  • Add a truly natural look to your designs with these professional homemade typefaces
  • Packed with lots of OpenType features, you can use stylistic alternates, ligatures, alternate characters, swashes, and so much more
  • Use any of these fonts for a variety of projects including: printed quotes, image overlays, logos, apparel branding, greeting cards, product packaging, book covers, mugs, totes, text headers and more!
  • This set is incredibly flexible, as you mix and match the various alternate characters

Terms & License:

  • Delivered as an instant download, after completing your purchase
  • The desktop fonts are delivered in a combination of both .otf and .ttf files and can be installed on both Mac and Windows
  • In order to access the alternate characters and glyphs, you will need Adobe Illustrator or Adobe InDesign
  • This bundle also contains extended license: use in multiple personal or commercial projects, install in multiple computers that you own, fonts and graphics can be used to resell flattened end products
  • Fonts cannot be included in the resell product as they are (.otf, .ttf and other filetypes)
  • Graphics cannot be resold as they are, but have to be modified into an end product so that it's a totally new product

Take a look:

  • Dreamlight Script

  • Dreamlight Script is a Beautiful hand Brush script give the natural looks and make your designs look even more naturally handwritten. Alternate character contain with Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • MagicStone Typeface

  • Magicstone Typeface is a handmade Painting script give the natural looks. Alternate character contain with Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Sprightful Typeface

  • Sprightful Typeface is a Awesome reality hand Brush script style give the natural looks. Alternate character contain with Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • DeHangster Typeface

  • DeHangster Typeface s a Handmade Brush script typeface give the natural looks. Great for Apparel Brand, Logos, printed quotes, invitations, image overlays, greeting cards, product packaging, text headers, any greeting cards, book cover Alternate character contain with Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Falling SLowly

  • Falling Slowly Typeface is a beautiful monoline hand written script typeface give the natural looks. Alternate character contain with Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • The Montagne

  • The Montagne Typeface is a beautiful hand Painting script give the natural looks. Alternate character contain with Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Perrota

  • The Perrota Typeface is a beautiful hand Painting script give the natural looks. Alternate character contain with Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • The Pennello

  • The Pennello Fonts is a beautiful hand Painting script give the natural looks. Alternate character contain with Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Brightside

  • Brightside Typeface is a beautiful handmade script give the natural looks. Alternate character contain with opentype features. Stylistic alternates, Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Brillia

  • Brillia Script is a beautiful handmade script give the natural looks. Alternate character contain with opentype features. Stylistic alternates, Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Mellanie Typeface

  • Mellanie Typeface is a beautiful handmade script give the natural looks. Alternate character contain with opentype features. Stylistic alternates, Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Angelia

  • Angelia Script is a beautiful handmade script give the natural looks. 282 glyphs and alternate character contain with opentype features. Stylistic alternates, Ligature and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Manny

  • Manny Script is a beautiful handmade script give the natural looks. Alternate character contain with opentype features. Stylistic alternates, Ligature, Swash and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Scriptease

  • Scriptease Typeface is a beautiful handmade brush script give the natural looks. 262 glyphs and alternate character contain with opentype features.You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Shaliqa

  • Shaliqa Script is a beautiful handmade brush script give the natural looks.100 glyphs. Great for Apparel Brand, any greeting cards, book cover, Painting design style, or any design that needs natural and personal touch.
  • Painting Script

  • Painting Script is a beautiful handmade brush script give the natural looks.196 glyphs .You can access using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • JellySugar Typeface

  • Jellysugar Typeface is a beautiful handmade brush script give the natural looks. 257 glyphs and alternate character contain with opentype features. Stylistic alternates, Swash and more.You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Allessa Script

  • Allessa Script is a beautiful handmade script give the natural looks. 312 glyphs and alternate character contain with opentype features. Stylistic alternates, Ligature, Swash and more. You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Hellena Script

  • Hellena Script is a beautiful handmade brush script give the natural looks. 238 glyphs and alternate character contain with opentype features. Stylistic alternates, Ornament, Swash and more.You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.
  • Greatpark Script

  • Greatpark Typeface is a beautiful handmade brush script give the natural looks. 241 glyphs and alternate character contain with opentype features. Stylistic alternates, Ornament, Swash and more.You can access all those alternate characters by using OpenType savvy programs such as Adobe Illustrator and Adobe InDesign.

The post 26 Handmade Script Fonts in 20 Typefaces For Only $19! (96% Off) appeared first on ByPeople.