Skip to content

Instantly share code, notes, and snippets.

@Fl0rent
Fl0rent / rechercher dans gists.md
Last active September 6, 2024 07:32 — forked from santisbon/Search my gists.md
How to search gists.

Obtenir tous les gists de l'utilisateur fl0rent : user:fl0rent

Faire une recherche multiple : filename:divi user:fl0rent

Trouver tous les gists avec une extension .css : extension:css

@Fl0rent
Fl0rent / Centrer Verticalement les Éléments d'une Colonne DIVI en pleine largeur.css
Last active May 21, 2024 12:48
Centrer Verticalement les Éléments d'une Colonne DIVI en pleine largeur
/* Centrer Verticalement les Éléments d'une Colonne DIVI en pleine largeur */
/* Ajouter dans la rangée la classe :vertical-center */
/* puis dans CSS personnalisé */
.vertical-center {
display: flex;
align-items: center;
@Fl0rent
Fl0rent / Enlever_liens_portfolio_grille_DIVI_portefeuille_filtrable.css
Last active July 24, 2018 14:04
Ce code permet d'enlever les liens du portfolio en grille de DIVI. grid portefeuille filtrable.
/** Enlever les liens du portfolio en grille de DIVI **/
.et_pb_portfolio_item a {
pointer-events: none;
cursor: default;
display: inline-block;
}
@Fl0rent
Fl0rent / augmenter_taille_sous-menus_Divi.css
Last active February 27, 2024 10:08
Ce code permet d'augmenter la taille des sous-menus de Divi
/*
largeur du menu déroulant
Ce code permet d'augmenter la taille des sous-menus de Divi
*/
#top-menu li li a {
width: 280px;
}
@Fl0rent
Fl0rent / blank-HTML_5-template.html
Last active November 10, 2022 10:45
Page vierge HTML5 avec du boostrap pour commencer un nouveau projet. La base parfaite!
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Titre de la page</title>
<?php /* Template Name: Example Template */ ?>
function frTous($stamp){
if($stamp!=''){
$st=$stamp;
$date=explode('/',$st);
return $date[2].'-'.$date[1].'-'.$date[0];
}
return '';
}
@Fl0rent
Fl0rent / Faire un lien HTML vers une ancre.html
Last active March 3, 2016 12:55
Faire un lien HTML vers une ancre
<h2 id="mon_ancre">Titre</h2>
<a href="#mon_ancre">Aller vers l'ancre</a>
@Fl0rent
Fl0rent / javascript_resources.md
Last active August 29, 2015 14:14 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage
@Fl0rent
Fl0rent / python_resources.md
Last active August 29, 2015 14:14 — forked from jookyboi/python_resources.md
Python-related modules and guides.

Packages

  • lxml - Pythonic binding for the C libraries libxml2 and libxslt.
  • boto - Python interface to Amazon Web Services
  • Django - Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
  • Fabric - Library and command-line tool for streamlining the use of SSH for application deployment or systems administration task.
  • PyMongo - Tools for working with MongoDB, and is the recommended way to work with MongoDB from Python.
  • Celery - Task queue to distribute work across threads or machines.
  • pytz - pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.4 or higher.

Guides