Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5198 links 

page 138 / 260

Liste des liens

Install Sublime text editor - Linux Mint Community
2017-03-30 21:18 - permalink -
installation LinuxMint sublime
- https://community.linuxmint.com/tutorial/view/907
Force Quit Keyboard Shortcut - Linux Mint Community
2017-03-30 20:57 - permalink -
LinuxMint
- https://community.linuxmint.com/tutorial/view/30
How to close a program that has frozen. - Linux Mint Community
2017-03-30 20:53 - permalink -
LinuxMint
- https://community.linuxmint.com/tutorial/view/50
How to solve internet connection problems - Easy Linux tips project
2017-03-30 20:17 - permalink -

Easy tips and tweaks for Linux Mint and Ubuntu, both for beginners and for advanced users!

installation internet Linux
- https://sites.google.com/site/easylinuxtipsproject/internet
Linux Mint 17 on the MacBook Pro - Linux Mint Community
2017-03-30 20:14 - permalink -
apple installation LinuxMint
- https://community.linuxmint.com/tutorial/view/1643
<length> - CSS | MDN
2017-03-30 18:15 - permalink -

Unités CSS et points par pouce

L’unité in ne représente pas un pouce physique de l’écran, mais 96px. Cela signifie que quelque soit la densité de pixel réelle de l’écran, elle est supposée correspondre à 96dpi. Sur les périphériques dotés d’une plus grande densité de pixel, 1in fera moins d’1 pouce physique. De la même manière, mm, cm, et pt ne sont pas des longueurs absolues.

Quelques exemples particuliers :

1in est toujours égal à 96px,
3pt est toujours égal à 4px,
25.4mm est toujours égal à 96px.
css
- https://developer.mozilla.org/fr/docs/Web/CSS/length
OpenMediaVault - The open network attached storage solution
2017-03-30 0:36 - permalink -

Pour un NAS 100% Linux

Linux NAS
- http://www.openmediavault.org/
Firefox : apprendre à gérer son propre user.js – Primokorn's
2017-03-28 18:57 - permalink -
Firefox personnalisation tutoriels vie-privée
- https://primokorn.wordpress.com/2017/03/24/firefox-apprendre-a-gerer-son-propre-user-js/
Firefox Configuration Guide for Privacy Freaks and Performance Buffs | 12Bytes.org
2017-03-28 18:49 - permalink -
Firefox performance personnalisation tutoriels vie-privée
- http://12bytes.org/articles/tech/firefoxgecko-configuration-guide-for-privacy-and-performance-buffs
SensioLabs University
2017-03-28 18:47 - permalink -

Pour apprendre Symfony

formation php Symfony tutoriels
- http://university.sensiolabs.com/
Linux: How to view log files on the shell?
2017-03-28 2:5 - permalink -

Many Linux servers are administered on the commandline e.g. with an SSH connection. In the following article, I will explain several shell commands that make it easy to view logfiles.

The most important command is tail. Tail can be used to read the last lines from a file. Examples:

Get the last 100 lines from the Debian mail log file:

tail -n 100 /var/log/mail.log

To get all newly added lines from a log file in realtime on the shell, use the command:

tail -f /var/log/mail.log

to quit tail and go back to the command line press the keys [ctrl] + [c]

If you want to get the last 1000 lines from a log file and they do not fit into your shell window, you can use the command "more" to be able to view them line by line.

tail -n 1000 /var/log/mail.log | more

press [space] to go to the next line or [ctrl] + [c] to quit.

If you want to search for a specific term in a large file, the command "grep" comes in handy. Example: We search for the email address "tom@anydomain.tld" in the mail log file:

grep "tom@anydomain.tld" /var/log/mail.log

If you want to view the whole content of a file on the shell, use the command "cat". Example:

cat /proc/cpuinfo

will show you detailed info about the CPU of your computer.

console Linux logs
- https://www.faqforge.com/linux/distributions/debian/linux-how-to-view-log-files-on-the-shell/
Ce petit boîtier permet d'améliorer les performances de sa voiture
2017-03-22 18:33 - permalink -

Le Macchina est un boîtier permettant d’écrire sur le fameux ECU (Electronic Control Unit) et donc de modifier des données initialement réservées aux constructeurs automobiles ou autres garagistes agrées. L’idée plaira aux mécanos qui y verront la possibilité de faire l’entretien de leur voiture à moindres frais, avec un produit open source évolutif et visiblement très performant.

Eh oui, parce que les mécanos sont des informaticiens, c'est bien connu !

amélioration hacking voiture
- http://hightech.bfmtv.com/produit/ce-petit-boitier-permet-d-ameliorer-les-performances-de-sa-voiture-1127035.html
Ajouter la possibilité d'ouvrir un fichier ou un répertoire dans Sublime Text via le menu contextuel sous Windows
2017-03-22 18:6 - permalink -

Via Kalvn.

sublimetext-1-enable.reg

Windows Registry Editor Version 5.00

; For folders.

[HKEY_CLASSES_ROOT\Directory\shell\sublime]
@="Open folder with Sublime Text"
"Icon"="C:\\Program Files\\Sublime Text 3\\sublime_text.exe,0"

[HKEY_CLASSES_ROOT\Directory\shell\sublime\command]
@="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\" \"%1\""

[HKEY_CLASSES_ROOT\Directory\Background\shell\sublime]
@="Open folder with Sublime Text"
"Icon"="C:\\Program Files\\Sublime Text 3\\sublime_text.exe,0"

[HKEY_CLASSES_ROOT\Directory\Background\shell\sublime\command]
@="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\" \"%V\""

; For files.

[HKEY_CLASSES_ROOT\*\shell\sublime]
@="Open with Sublime Text"
"Icon"="C:\\Program Files\\Sublime Text 3\\sublime_text.exe,0"

[HKEY_CLASSES_ROOT\*\shell\sublime\command]
@="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\" \"%1\""

sublimetext-2-disable.reg

Windows Registry Editor Version 5.00

; For folders.

[-HKEY_CLASSES_ROOT\Directory\shell\sublime]
[-HKEY_CLASSES_ROOT\Directory\shell\sublime\command]
[-HKEY_CLASSES_ROOT\Directory\Background\shell\sublime]
[-HKEY_CLASSES_ROOT\Directory\Background\shell\sublime\command]

; For files.

[-HKEY_CLASSES_ROOT\*\shell\sublime]
[-HKEY_CLASSES_ROOT\*\shell\sublime\command]

Fonctionne nickel avec W7 Pro

script sublime windows
- https://gist.github.com/kalvn/3dd746691603b2686810474213e9b1a0
svg-icon
2017-03-22 17:27 - permalink -

Génial : une collection d’icônes en SVG

icones svg
- https://leungwensen.github.io/svg-icon/
RIPS – Finding vulnerabilities in PHP application
2017-03-21 15:10 - permalink -

J'avais testé en local (il y a 4 ou 5 ans) une ancienne version et le script avait du mal avec le php.
Apparemment, la version 0.5 est abandonnée et la nouvelle est dispo ici : https://www.ripstech.com

outils php script sécurité tools
- https://warriordudimanche.net/article542/58d118b920b5f
Favicon Generator for all platforms: iOS, Android, PC/Mac...
2017-03-21 13:36 - permalink -

Outil de génération de favicon à partir d'une image (png, jpg, svg...).
Il vérifie également la présence de tous les favicons nécessaires aux terminaux portables (tablettes apple, téléphones android...).

favicon html outils
- https://realfavicongenerator.net/
Attention au Burn Out
2017-03-21 13:23 - permalink -

Burn out

Spéciale dédicace à Bronco !

Humour
- https://bookmarks.ecyseo.net/?adOtXQ
Débat TF1
2017-03-21 0:28 - permalink -

Si l'on doit reconnaître une "qualité" à Macron c'est bien la facilité déconcertante avec laquelle il parvient à parler plusieurs dizaines de minutes sans rien dire. Impressionnant !

politique
- https://bookmarks.ecyseo.net/?Qt4lRQ
The Best Keyboard Shortcuts for Bash (aka the Linux and macOS Terminal)
2017-03-20 11:31 - permalink -

via Timo

bash Linux terminal
- https://www.howtogeek.com/howto/ubuntu/keyboard-shortcuts-for-bash-command-shell-for-ubuntu-debian-suse-redhat-linux-etc/
Templatemaker.nl — free, custom sized box templates
2017-03-16 18:9 - permalink -

Trop bien. Des patrons pour fabriquer des boites en carton.

bricolage
- http://www.templatemaker.nl/
page 138 / 260


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2