Shaare your links...
3325 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
53 results for tags memo x
  • What's a quick way to comment/uncomment lines in Vim? - Stack Overflow
    For those tasks I use most of the time block selection.

    Put your cursor on the first # character, press CtrlV (or CtrlQ for gVim), and go down until the last commented line and press x, that will delete all the # characters vertically.

    For commenting a block of text is almost the same: First, go to the first line you want to comment, press CtrlV, and select until the last line. Second, press I#Esc (then give it a second), and it will insert a # character on all selected lines.
    permalink -
    - https://stackoverflow.com/questions/1676632/whats-a-quick-way-to-comment-uncomment-lines-in-vim
    memo vim
  • Changer le format <cr> <lf> avec vim
    :set fileformat=unix
    ou pour windows :
    :set fileformat=dos
    permalink -
    - ?m3dKDQ
    memo vim
  • Le positionnement CCS en moins de 10 etapes: position static relative absolute float
    permalink -
    - http://deptinfo.cnam.fr/~pons/TOTO/positionement.html
    css memo
  • memo-linux.com » Astuce: modifier un fichier système avec VI sans être root
    :w !sudo tee %
    permalink -
    - http://memo-linux.com/astuce-modifier-un-fichier-systeme-avec-vi-sans-etre-root/
    linux memo vim
  • javascript - Refresh image with a new one at the same url - Stack Overflow
    Try adding a cachebreaker at the end of the url:

    newImage.src = "http://localhost/image.jpg?"; + new Date().getTime();

    This will append the current timestamp automatically when you are creating the image, and it will make the browser look again for the image instead of retrieving the one in the cache.
    permalink -
    - https://stackoverflow.com/questions/1077041/refresh-image-with-a-new-one-at-the-same-url
    html memo
  • Initiation au positionnement CSS : 3. position absolue et fixe | Openweb.eu.org
    permalink -
    - http://openweb.eu.org/articles/initiation_absolue
    css memo
  • [Python] Lancer une appli via python [Résolu]
    Pour passer des paramètre, il suffit de les donner sous forme de liste à popen.

    Exemple: Je lance le programme compress et je lui passe 2 options:
    -V et un nom de fichier:

    p = subprocess.Popen(args=["compress","-V",nomdefichier], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
    outputlines = p.stdout.readlines()
    p.wait()
    print outputlines
    permalink -
    - http://www.commentcamarche.net/forum/affich-2231600-python-lancer-une-appli-via-python
    memo python
  • Loli Cries! - FAQ
    How do I extract my favorite loli shout?
       If you are running Linux, it's quite easy. Just use the following command: ffmpeg -i My-great-anime.avi -vn -ss 14:22.4 -t 00:00:03.230 -aq 7 -ac 2 -acodec libvorbis -y out.ogg and that's all. -ss and -t are timestamps following the hh:mm:ss.ms format.
       You can use whichever method you like (or can use) as soon as you ouput an Ogg/Vorbis file.
       Note: if the video has multiple audio streams and the japanese one isn't selected, what you're searching for is certainly the -map option.
    How do I extract my favorite loli pic?
       On Linux – yeah, again – it's quite easy. You can use: ffmpeg -i My-great-anime.avi -ss 1094.1 -r 1 -f image2 My-great-anime.png
    How do I convert my loli pic to the right resolution?
       Linux answer, use ImageMagick: mogrify -resize 300x200 My-great-anime.png
    permalink -
    - http://lolicri.es/faq.html
    ffmpeg linux memo
  • Taille d’un dossier en bash | Sam & Max: Python, Django, Git et du cul
    du -sh /chemin/vers/dossier

    et dans les comments :
    recherche incrémentale :

    ctrl-r + taper la string cherchée, et si la ligne affichée ne convient pas s’acharner sur ctrl-r jusqu’à pécho la ligne voulue ;)

    ou :
    !1234 pour rappeler la commande de la ligne 1234 (qui fait 15km de long)

    ou :
    !s
    rappellera la dernière commande commençant par “s”
    permalink -
    - http://sametmax.com/taille-dun-dossier-en-bash/
    bash linux memo
  • Les sélecteurs en CSS3
    permalink -
    - http://debray-jerome.developpez.com/articles/les-selecteurs-en-css3/#LII
    css memo
  • python 2.7 quick reference : string.format
    Je cherchais depuis longtemps une page qui détaille "".format() en python... quelques exemples :

    >>> "{:05d}".format(36)
    '00036'
    >>> "{:4x}".format(255)
    '  ff'
    >>> "{:#4x}".format(255)
    '0xff'
    >>> "{:b}".format(9)
    '1001'
    >>> "{:08b}".format(9)
    '00001001'
    >>> "{:c}".format(97)
    'a'
    >>> "{:d}".format(0xff)
    '255'
    >>> "{:x}".format(105199)
    '19aef'
    >>> "{:X}".format(105199)
    '19AEF'
    >>> "{:<#9X}".format(105199)
    '0X19AEF  '
    permalink -
    - http://infohost.nmt.edu/tcc/help/pubs/python/web/format-spec.html
    memo python
  • Ce que j’aurais aimé savoir quand j’ai commencé GIT | Arnaud LEMAIRE
    via sebsauvage
    permalink -
    - http://lilobase.wordpress.com/2014/05/12/a-la-decouverte-de-git/
    git memo
  • at : exécuter une commande plus tard
    permalink -
    - http://fr.openclassrooms.com/informatique/cours/reprenez-le-controle-a-l-aide-de-linux/at-executer-une-commande-plus-tard
    linux memo
  • Utiliser fail2ban pour protéger votre application web
    permalink -
    - http://www.commentcamarche.net/faq/18225-utiliser-fail2ban-pour-proteger-votre-application-web
    fail2ban memo php
  • Optimiser tous les JPEG du répertoire courant - Liens en vrac de sebsauvage
    @echo off
    for %%x in (*.jpg) do (
      echo Optimizing %%x
      jpegtran -copy none -optimize "%%x" temp_optimize.jpg
      jpegtran -copy none -progressive temp_optimize.jpg "%%x"
      del temp_optimize.jpg
    )

    et http://jpegclub.org/jpegtran/
    permalink -
    - http://sebsauvage.net/links/?0DwJxQ
    batch image jpg memo
  • Le CSS - Tutoriel HTML & CSS
    permalink -
    - http://slaout.linux62.org/html_css/css.html
    css memo
  • Debian - Liste des paquetages (packages) installés
    permalink -
    - http://www.commentcamarche.net/faq/877-debian-liste-des-paquetages-packages-installes
    linux memo
  • memento GNU/linux
    permalink -
    - http://free-electrons.com/doc/command_memento_fr.pdf
    cheatsheet memo
  • DevDocs
    Référence très bien faite pour : css, dom, html, javascript, etc.
    permalink -
    - http://devdocs.io/
    docs memo reference
  • Executer un programme avec privilège d'administrateur (Windows)
    Menu démarrer > zone de recherche : nom du programme puis ctrl + shift + enter
    ou
    clic sur icone + ctrl + shift
    permalink -
    - http://lifehacker.com/5592973/use-ctrl%252Bshift%252Bclick-to-open-programs-as-administrator-in-windows-7
    memo
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.