How one CSS collection can define the styles for multiple sites that look different.
Via shaarli
wget -r -k -E -np http://tar.get/wanted/directory/
Donc la cible est http://tar.get/wanted/directory/. Les options :
-r pour parcourir tous les liens du sites.
-k conversion des liens en liens locaux.
-E conversion php vers HTML, pour relire aisément avec Firefox.
-np pour ne pas remonter dans l’arborescence du site
D’autre options utiles :
-lX, où X est un entier, pour ne parcourir que X niveaux de l’arborescence du site.
-c pour continuer un téléchargement interrompu.
–load-cookies si nécessaire.
Les options pour ne pas pourir le serveur :
–limit-rate X, pour limiter la Bande Passante à X B/s
-w X pour attendre X secondes entre chaque téléchargement de fichiers.
-T X au bout de X secondes wget abandonne le téléchargement d’un fichier.
Tester votre site pour savoir si il respecte les règles mobile de Google ?
et oui vos sites vont devoir être compatible pour être bien référencés...
J'aime beaucoup ton thème, je le trouve simple et joli
et il laisse beaucoup de place à la lecture ;)
je pense que je vais avoir encore un nouveau site sur mon flux rss...
Bonne journée Yosko ;)
voila un petit bout de code que j'ai fait pour mettre une petite image des sites dans shaarlo (c'est visible ici : http://shaarli.memiks.fr/shaarlo/)
et la discussion zerobin est en lien ;)
===============================
Mettre un screenshot des sites en liens dans shaarlo ?
Créer une api pour votre site :
http://snapito.com/paid-api.jsp
ajout du fichier capture.php à la racine de votre shaarlo et modification de votre clé:
capture.php:
<?php
$api_key = "mettre_votre_cle_ici";
header("Content-Type: image/png");
$urlsite=$_GET['url'];
$image='./cache/'.md5($urlsite).'.png';
$content;
if(file_exists($image)) {
$content = file_get_contents($image);
} else {
$content = file_get_contents("http://api.snapito.com/web/".$api_key."/240x240/?type=png&url=".$urlsite);
$fp = fopen($image,'wb');
fwrite($fp,$content);
fclose($fp);
}
echo $content;
création du répertoire cache:
mkdir ./cache/
dans xsl/index.xsl:
juste après (ligne 122)
ajout de
dans css/style.css:
ajout de
img.capture {float: right;}
et voila le résultat : http://shaarli.memiks.fr/shaarlo/
J'ai fait un zérobin pour avoir les retours ;)
Si vous connaissez d'autre site faisant des captures (pour limiter les blocages d'API)... ;)
==========================
Oui Séb tu as raison cela se fait TRES facilement dans shaarli:
il faut modifier :
inc/sharli.css et ajouter :
.linkcontainer > img {
float: right;
}
et modifier tpl/linklist.html
ajouter après la ligne 43:
{$value.title|htmlspecialchars}
cette ligne:
Voila ;)
@Seb :
Et puis bon... celui qui tient un site :
1) sympa
2) qui parle d'un domaine qui te plaît / te fais réagir
3) écrit plutôt bien (quoique on s'en fou, juste un thème intéressant)
4) ne dit pas (trop) de conneries
il lui suffit de t'envoyer un mail je pense pour avoir au minimum un lien shaarli qui pointe vers son site et du coup à peu prés 2000 personnes minimum qui passe sur le sien... et plusieurs qui le re-shaarlise...
du coup PLEIN de liens... mais bon pour cela il faut AUSSI que le site SOIT intéressant (à on me dit à l'oreille qu'un site intéressant n'a même pas besoin de ça pour avoir un bon pagerank) (oui je sais shaarli ajoute un nofollow et alors !).
PS: moi j'ai un site POURRI, je le sais, je devrais publier plus, mais pour le moment je me fixe d'autre objectif alors oui mon pagerank est null, je m'en moque, ceux qui me connaisse n'ont pas besoin de cela.
Un article assez critique sur Bootstrap et Less mais aussi très bien argumenté ;)
et la suite lié au retour :
http://blog.exirel.me/bootstrap-addendum
et la dépêche de linuxfr pour la version 2.0 (j'aime les commentaires):
https://linuxfr.org/news/bootstrap-2-0-par-twitter
699€ RECONDITIONNE garanti 1 an !! je bave :
Intel Core i7-2670QM (2.2 GHz)
16 Go en DDR3
Disque dur 750 Go en 7200 tr/m
Geforce GT 630M avec 2 Go DDR3
Graveur DVD
Haut-parleurs Altec Lansing
Wi-Fi b/g/n, USB 3.0
Ecran 15,6" HD LED
arf... si seulement on m'avait pas envoyé ce site qui apparemment à bonne réputation (parmis mes connaissances...)
Pas mal noté en plus :
http://www.fia-net.com/annuaire/34270/ordinateur-pas-cher_301-1_resume.html
http://forum.hardware.fr/hfr/OrdinateursPortables/Conseils-d-achat/achete-ordinateur-pascher-sujet_66423_1.htm
Testing websites in IE7 / IE8 / IE9 on a Mac
Went looking for information on this today to link to someone and couldn't find anything recent, so I figured I'd write one up myself. Here's a simple process for getting a 100% legal copy of IE9 running on your mac using disk images provided by Microsoft themselves.
Download and install a copy of virtualbox, it's a free virtualization program like VMWare or Parallels. Make sure you have the command line utilities checked in the installer.
Download the official Microsoft Application Compatibility Virtual PC Image for IE9. As of this writing the latest versions are as of August 16th, 2011. The IE9 image is a seven part self extracting RAR file. Images are also available for IE7 and IE8. This image contains a fully legal copy of Microsoft Windows 7, licensed for developer debugging use in a virtual machine only.
Use unrar (installed via macports or homebrew) or The Unarchiver to extra the multipart archive. This will result in two files: Windows 7.vhd and Windows 7.vmc. You can discard the vmc file.
Open the terminal and cd to the directory you extracted the vhd file into. Run the following command:
VBoxManage clonehd "Windows 7.vhd" Windows_7_IE9.vdi
Move the resulting .vdi file into a safe location. By default VirtualBox puts its disk images in a unique folder inside ~/VirtualBox VMs, but I prefer them to be on a separate disk partition.
Launch VirtualBox and click the New button on the toolbar (or select New... from the Machine menu). This will launch the new virtual machine wizard. Name the machine however you want and select Windows 7 from the Operating System Version menu.
VirtualBox will allocate 512MB by default, which in my experience is enough for basic web testing, you may wish to give it more.
When prompted for the hard disk, choose "Use existing hard disk" and click on the browse icon to the right of the menu. Find the Windows_7_IE9.vdi file that we created in step 4. Click through the remaining dialog panes and finish the wizard.
Due to an incompatibility with VirtualBox and VirtualPC, this disk image will Bluescreen when you attempt to launch it, so there is one more thing that has to be changed to get it working. Select the new virtual machine and click on the Settings button. Switch to the Storage tab. By default VirtualBox places the boot media on the SATA controller; you need to move it to the IDE controller.
Do this by selecting the IDE controller and choosing Add Hard Disk from the plus button menu. Select the .vdi file from the list and click OK. Now remove that same drive from the SATA Controller by selecting it and clicking the minus button. Click OK.
Select your newly made Windows 7 virtual machine and click Start.
When you get to the windows login screen, choose Administrator. The login password is "Password1"
Windows will tell you that the copy you are using is non-genuine. Microsoft does not issue valid keys with these images, as they are intended to be temporary, and their official stance is to just reset the disk image when the trial expires (seriously, it's in that link above).
Click cancel on the activation dialog box so it takes you to the desktop. Double click on the Command Prompt icon and type in the following:
slmgr –rearm
This command resets the genuine advantage countdown timer to 30 days so that it will stop bugging you every time you launch it. Unfortunately, Windows Security Essentials will continue to bug you about it, so feel free to disable that. A dialog will popup telling you to restart, but we don't want to do that yet.
Press the command key to get Windows to release your mouse, and choose "Install Guest Additions" from the Devices menu in Virtualbox. Windows will popup an AutoPlay confirmation, click "Run VBoxWindowsAdditions.exe". An installer will launch, click through all the dialogs. When Windows Security prompts for permission, click Install.
Finally, when it asks to restart, let it.
The final step is optional, and that's to enable to auto-login feature so you don't have to enter the password every time you launch the machine. This article on MSDN will show you how to do that.
Congratulations, you now have a 100% legal copy of IE9 on your Mac. These disk images are valid for 3 months from the date they were made (The August 2011 images expire November 17, 2011). You will need to repeat this process for the new images when they come out.
If you need to configure Windows for any local virtualhosts, the file you need is C:\Windows\System32\drivers\etc\hosts (note, you need to be an Administrator to save the file), and the IP to forward to is 10.0.2.2 (which is also localhost).
The August 2011 IE9 disk image also comes preinstalled with Google Chrome, Firefox 4, Adobe Flash 10.2, and a hand-full of other useful development tools.
http://www.microsoft.com/en-us/download/details.aspx?id=11575
de quoi trouver de belles icones pour vos site internet et applications ;)
et un moteur de recherche:
http://www.iconlet.com/
Les bonnes pratiques du web, comment améliorer son site
le rendre plus fluide et plus rapide.
Un super site qui fournit des outils de gestion en ligne de commandes, vraiment sympa, a lire et a étudier
Merci Augustin pour le partage ;)
Un kit complet pour site web en HTML5 !!
via (http://sebsauvage.net/links/?xbdWnA) via (http://share.aldarone.fr/).
Merci ;)
Un site d'un freelance de l'informatique... a consulté
Un site qui parle du freelance dans l'informatique, très interressant, a consulté.
en provenance de : http://linuxfr.org/users/aurelix/journaux/du-freelance-en-r%C3%A9gion-parisienne#comments
avec une copie sur mon autoblog: memiks.fr/autoblogs/linuxfr/?du-Freelance-en-r%C3%A9gion-parisienne
Un site pour apprendre et créer des sites web en PHP.
La Part De L'Ombre - Site BDSM de Maître Déphysios et Thysminia