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

 
  • #g
  • #ge
  • #gen
  • #gène
RSS: #generator

#generator

  • #generators
  • @b_b
    b_b @b_b PUBLIC DOMAIN 27/08/2021
    6
    @tofulm
    @rastapopoulos
    @ericw
    @suske
    @gblin
    @astier
    6

    Discover the best Apps for GNOME – Apps for GNOME
    ▻https://apps.gnome.org/en

    https://apps.gnome.org/assets/overview.svg

    Discover the best applications in the GNOME ecosystem and learn how to get involved.
    Apps featured in this curated overview are all built with the GNOME philosophy in mind. They are easy to understand and simple to use, feature a consistent and polished design and provide a noticeable attention to details.

    Wow, un site de présentation des applications “à la gnome” dans lequel je découvre quelques trucs que je ne connaissais pas :

    Curtail is an useful #image #compressor, supporting PNG, JPEG and WEBP file types.
    ▻https://apps.gnome.org/app/com.github.huluti.Curtail

    Apostrophe is a GTK based distraction free #Markdown #editor, originally created by Wolf Vollprecht and maintained by Manuel Genovés. It uses pandoc as backend for markdown parsing and offers a very clean and sleek user interface.
    ▻https://apps.gnome.org/app/org.gnome.gitlab.somas.Apostrophe

    #Webfont Kit #Generator is a simple utility that allows you to generate woff, woff2 and the necessary CSS boilerplate from non-web font formats (otf and ttf).
    ▻https://apps.gnome.org/app/com.rafaelmardojai.WebfontKitGenerator

    #Contrast checks whether the contrast between two colors meet the #WCAG requirements.
    ▻https://apps.gnome.org/app/org.gnome.design.Contrast

    Et plein d’autres à découvrir !

    b_b @b_b PUBLIC DOMAIN
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 28/08/2021

      Trop bien pour Apostrophe, j’ai utilisé pendant des années un éditeur MD du même auteur mais qu’il n’avait pas fait du tout en GTK, donc là trop bien c’est plus fluide et rapide

      RastaPopoulos @rastapopoulos CC BY-NC
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 28/08/2021

      Par contre tout est en flatpak, et du coup faut l’installer en plus pour la logithèque (ce qui n’est pas le cas par défaut sur Ubuntu). Et ça prend cent fois plus de place.

      RastaPopoulos @rastapopoulos CC BY-NC
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 16/03/2021
    4
    @arno
    @rastapopoulos
    @tofulm
    @jeanmarie
    4

    CSS Generators — Smashing Magazine
    ▻https://www.smashingmagazine.com/2021/03/css-generators

    this week around we’ll be looking at useful #generators for everything #CSS: from #gradients to #drop-shadows and bezier curves to triangles and type scales. Just a few useful tools for your toolbelt, to keep close.

    Ça faisait longtemps que j’avais pas vu un article intéressant passer sur smashing, quelques liens sympas :

    ▻https://brumm.af/shadows
    ▻https://9elements.com/blog/css-border-radius
    ▻https://codepen.io/yaphi1/pen/oNbEqGV
    ▻https://bennettfeely.com/clippy
    ▻https://animista.net

    b_b @b_b PUBLIC DOMAIN
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 16/03/2021

      #animation #intégration #web #inspiration

      RastaPopoulos @rastapopoulos CC BY-NC
    • @jeanmarie
      jeanmarie @jeanmarie CC BY-NC-SA 10/06/2021

      Merci #bb_la_ressource :D

      jeanmarie @jeanmarie CC BY-NC-SA
    Écrire un commentaire
  • @olange
    Olivier Lange @olange CC BY-SA 1/08/2019

    Shadershop — an interface for programming GPU shaders in the mode of a direct manipulation image editor like Photoshop
    ▻http://tobyschachman.com/Shadershop #glsl #generators

    Olivier Lange @olange CC BY-SA
    Écrire un commentaire
  • @olange
    Olivier Lange @olange CC BY-SA 1/08/2019

    ganja.js — Geometric Algebra Generator for Javascript / C++ / C# / Rust / Python, with operator overloading and algebraic literals
    ▻https://github.com/enkimute/ganja.js #algebra #geometry #generators

    Generates Clifford algebras and sub-algebras of any signature and implements operator overloading and algebraic constants.

    Olivier Lange @olange CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 11/05/2018

    #async-Await ≈ Generators + #promises
    ▻https://hackernoon.com/async-await-generators-promises-51f1a6ceede2?source=rss----3a8144eabfe3-

    https://cdn-images-1.medium.com/max/704/1*IkgyvsWnvaGmyjWAUPnHUA.png

    In this article I will describe how the ES2017 async functions are essentially a play between two older #javascript features: generators and promises, both of which were added earlier to the language in the ES2016 specification.Before you start reading ..This article is not an introduction to promises, generators or async functions.The only goal of this article is to describe how async functions can be realised using promises and generators.It does not offer any opinion whether async functions are better or worse than the other approach.The code examples used in this article are ingeniously contrived for easier explanation. They are not meant for any serious use.But why .. ?Since async functions are now natively supported, what is the need to understand how they work?Well, apart from the (...)

    #asyncawait #generator

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

    #python Generators Explained ! (Sort of)
    ▻https://hackernoon.com/python-generators-35ac68334882?source=rss----3a8144eabfe3---4

    https://cdn-images-1.medium.com/max/450/1*9D3HXgwcSZjdXIxviApJMw.jpeg

    Learn python generators by example.GENERATORSAs IteratorsUsing generators (generator functions)>>> def integers(): i = 1 while True: yield i i = i + 1>>> a = integers()>>> next(a)1>>> next(a)2>>> next(a)3>>> next(a)4>>> next(a)5>>>Assigning a #generator to a varialble will automatically create ._next_() or next(generator) methodThis will allow you to iterate through the generator valuesConverting to list>>> def yrange(n): i = 0 while i < n: yield i i += 1>>> y = yrange(5)>>> list(y)[0, 1, 2, 3, 4]>>> list(y)[]You can convert a generator to a list however on the process it will lose its value and transfer it to the list.>> y = (...)

    #scripting #async-functions #programming

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @nicod_
    nicod_ @nicod_ 7/10/2017
    3
    @rastapopoulos
    @tofulm
    @suske
    3

    ►https://mjml.io
    ►https://mjml.io
    #emailing #email #template #responsive #processor #markup #generator #framework

    nicod_ @nicod_
    Écrire un commentaire
  • @magik
    __cyp @magik CC BY-SA 30/03/2017

    Documentation generator for shell scripts (bash, sh, zsh) ▻https://github.com/reconquest/shdoc

    #bash #scripting #documentation #generator #markdown

    __cyp @magik CC BY-SA
    Écrire un commentaire
  • @nicod_
    nicod_ @nicod_ 25/11/2016

    #admin Panel Building Blocks :: Backpack for #laravel
    ▻https://backpackforlaravel.com
    #generator #crud

    nicod_ @nicod_
    Écrire un commentaire
  • @ccoveille
    ccoVeille @ccoveille 5/01/2013

    PHP : rfc:generators [PHP Wiki]
    ►https://wiki.php.net/rfc/generators

    Generators provide an easy, boilerplate-free way of implementing iterators. As an example, consider how you would implement the file() function in userland code: function getLinesFromFile($fileName) {…

    Source: PHP: start [PHP Wiki]

    #rfc #generators

    ccoVeille @ccoveille
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 14/06/2011

    Ultimate #CSS #Gradient #Generator - ColorZilla.com
    ►http://www.colorzilla.com/gradient-editor

    A powerful Photoshop-like CSS gradient editor from ColorZilla

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 22/01/2011

    HaïkuLeaks / Cable is poetry
    ►http://haikuleaks.tetalab.org

    je suis jaloux ^^

    #wikileaks #generator #haiku #poetry #internet

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 31/03/2010

    CSS3 Please ! The Cross-Browser CSS3 Rule Generator
    ►http://css3please.com

    #css3 #css #generator #web #dev #clevermarks

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 25/03/2010

    CSS3 Please ! The Cross-Browser CSS3 Rule Generator
    ►http://css3please.com

    j’adore l’interface ^^ , plus geek, tu meurs

    #css3 #css #webdesign #html5 #tool #generator #webdev

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 17/03/2010

    Preloaders.net | Free AJAX animated loading gif’s | 3 dimensional (3D)
    ►http://preloaders.net

    #ajax #wait #loader #indicator #builder #generator #gif

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 10/03/2010

    Grid System Generator
    ►http://www.gridsystemgenerator.com

    #css #grid #webdesign #generator #layout #tools #design

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 14/01/2010

    SpriteMe
    ►http://spriteme.org

    Bookmarklet Javascript pour faire des Sprites CSS. A l’air très bien fait.

    #webdesign #webdev #css #tools #graphics #development #bookmarklet #generator

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 3/11/2009

    The 1KB CSS Grid by Tyler Tate :: A simple, lightweight approach
    ►http://www.1kbgrid.com

    #css #grid #webdesign #generator #tools

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 17/12/2008

    HTML-Ipsum
    ►http://html-ipsum.com

    #web #design #webdesign #css #webdev #jQuery #tools #resources #generator #lipsum

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 24/08/2007

    YUI Grids Wizard
    ►http://mattwarden.com/grids/#

    #Yahoo #Grid #builder #javascript #groupe:clever-age #wizard #generator #layout #css #yui

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 13/07/2007

    Dynamic Drive- FavIcon Generator
    ►http://tools.dynamicdrive.com/favicon

    Use this online tool to easily create a favicon (favorites icon) for your site. A favicon is a small, 16x16 image that is shown inside the browser’s location bar and bookmark menu when your site is called up

    #favicon #generator #webdesign #design #icone

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    • @gn400i_review
      gn400i-review @gn400i_review 24/03/2022

      Hi Everyone hope to all of you fine..... I really happy to see about generator related post.... I have some issues about my wen gn400i generator! It is a most common generator in market. Maybe everyone have an experience about it.... Guys i want to check wen <a href="▻https://101generator.com/wen-gn400i-generator-review/">wen gn400i decibel level</a> in my generator which is most disturbing my..... Am waist alot of time to check this but i am failed..... Kindly someone help me Please.... It’s an humble request........

      gn400i-review @gn400i_review
    Écrire un commentaire

Thèmes liés

  • #css
  • #webdesign
  • #tools
  • #webdev
  • #grid
  • #design
  • #web
  • #generators
  • #layout
  • #builder
  • #css3
  • #javascript
  • programminglanguage: php
  • #indicator
  • #loader
  • #wait
  • #ajax
  • #rfc
  • #yui
  • technology: php
  • #gradient
  • #tool
  • #poetry
  • #internet
  • industryterm: generator haiku poetry internet
  • #dev
  • #clevermarks
  • #wikileaks
  • #haiku
  • technology: gif
  • #jquery
  • #wizard
  • #groupe
  • #yahoo
  • industryterm: web design webdesign
  • technology: html
  • #lipsum
  • #favicon
  • #resources
  • industryterm: grid webdesign generator tools