Skip to content

Instantly share code, notes, and snippets.

View mere-teresa's full-sized avatar
📚

Sarah Haïm-Lubczanski mere-teresa

📚
View GitHub Profile
@briandominick
briandominick / asciidoc-static.adoc
Last active March 11, 2024 18:24
Static Site Generators with AsciiDoc Support

There are 28 static site generators that support AsciiDoc sourcing.

@bdunogier
bdunogier / Howto-eZ-Platform-In-Context-with-Crowdin.md
Last active December 16, 2016 14:54
Translating eZ Platform in-context using Crowdin.com

Crowdin In-Context integration

This guide explains how to translate the eZ Platform UI in-context, within the application itself. It uses crowdin.com, and requires eZ Platform 1.7.0, released on december 15th.

  • Edit vendor/willdurand/js-translation-bundle/Bazinga/Bundle/JsTranslationBundle/Controller/Controller.php:198, change {2} to {3}.
  • Download the ezplatform-ach-ug-translations-tgz file from this gist.
  • Unzip it from app/Resources/translations. Create the directory if it doesn't exist. You should have three new directories: EzPublishCoreBundle, EzSystemsPlatformUIBundle and EzSystemsRepositoryFormsBundle.
  • Edit vendor/ezsystems/platform-ui-bundle/Resources/views/PlatformUI/shell.html.twig, and add this block right before
@edas
edas / series.md
Last active March 22, 2020 19:40 — forked from twidi/series.md
series a voir

Note : Je cherche d'abord des séries où l'intrigue principale sur l'ensemble de la saison prime sur l'intrigue de chaque épisode.

Je suis plutôt bon public pour l'espionnage, et les intrigues politiques ou mafieuse, le légal, éventuellement la SF, mais plutôt mauvais public pour l'horreur, les choses trop noires ou qui psychologiquement me mettent en dépression (genre Black Miror).

Si j'aime je mets parfois un +, ++ ou +++. Si j'ai suivi mais mitigé j'ai ~ (en général je ne suis pas allé loin dans les saisons). Si ça ne colle vraiment pas je raye.

N'hésitez pas à suggérer ce qui risque de m'intéresser ou pas (éventuellement en proposant des ajouts)

  • 24 (~, et encore, ça se répète et ça fatigue dès les saisons 2 et 3, pas vu plus loin)
@bdunogier
bdunogier / EZP-22217-rest_country_list.md
Last active January 4, 2016 19:09
EZP-22217: REST Country list specifications

REST Countries list specifications

JIRA story: http://jira.ez.no/browse/EZP-22217

Implement a REST service that gives access to an ISO-3166 formatted list of world countries.

Use-cases

  • presenting a country options list from any application that uses the REST API

Get the list of countries

@jubianchi
jubianchi / .gitconfig
Last active December 14, 2015 15:29
git stashstash
[alias]
stashstash = "!f() { STASH=$(git stash); echo \"\\033[0;31mKouroukoukou roukoukou stash stash\\033[0m\"; echo \"$STASH\"; xdg-open \"http://www.youtube.com/watch?v=LpE1bJp8-4w&feature=youtu.be&t=47s\" > /dev/null 2>&1 & }; f"
satsh = !git stashstash
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active June 16, 2024 19:37
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@pierrejoye
pierrejoye / curl ftps async upload
Created April 21, 2011 11:58
Upload a dir content asynchronously to a ftps using curl and php
<?php
$src_dir = '/some/local/directory';
$curl = array();
$ftpserver = 'ftp.example.com';
$ftp_path = "/remotedirectory";
$ftp_user = 'johndo';
$ftp_password = 'foobar';
$mh = curl_multi_init();